@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
:root {
  --color2: #b13bff;
  --color1: #ed3500;
  --color3: #ffcc00;
  --color4: #1c0f61;
}
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;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, sans-serif;
  font-weight: bold;
}
p,
a,
li,
ul,
body {
  font-family: Helvetica, sans-serif;
}
/* custom css starts */
/* marquee */

.sparkle-header-topbar {
  background: var(--color3);
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1031;
}
/* ===== Fireworks Navbar - Scoped Styles ===== */
.fireworks-header {
  position: relative;
  z-index: 1000;
}
.fireworks-header .fireworks-nav-svg {
fill: #093360;
}

.fireworks-header .fireworks-nav-container {
  position: relative;
  background-color: var(--color1);
}

.fireworks-header .fireworks-nav-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fireworks-header .fireworks-main-nav {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}

/* Logo */
.fireworks-header .fireworks-logo img {
  transform: scale(1.6);
  height: 80px;
  transition: transform 0.3s ease;
}

.fireworks-header .fireworks-logo:hover img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.fireworks-header .fireworks-desktop-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fireworks-header .nav-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.fireworks-header .nav-link {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  position: relative;
}

.fireworks-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color3);
  transition: width 0.3s ease;
}

.fireworks-header .nav-link:hover::after,
.fireworks-header .nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle Button */
.fireworks-header .fireworks-mobile-toggler {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 1002;
  right: 20px;
}

.fireworks-header .toggler-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.fireworks-header .toggler-top {
  top: 8px;
}

.fireworks-header .toggler-middle {
  top: 18px;
}

.fireworks-header .toggler-bottom {
  bottom: 8px;
}

.fireworks-header .fireworks-mobile-toggler[aria-expanded="true"] .toggler-top {
  transform: translateY(10px) rotate(45deg);
  background: var(--color3);
}

.fireworks-header
  .fireworks-mobile-toggler[aria-expanded="true"]
  .toggler-middle {
  opacity: 0;
}

.fireworks-header
  .fireworks-mobile-toggler[aria-expanded="true"]
  .toggler-bottom {
  transform: translateY(-10px) rotate(-45deg);
  background: var(--color3);
}

/* Mobile Menu */
.fireworks-header .fireworks-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: #df2735;
  z-index: 1001;
  transition: right 0.3s ease;
  padding-top: 100px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.fireworks-header .fireworks-mobile-menu.show {
  right: 0;
}

.fireworks-header .mobile-menu-content {
  padding: 1rem;
}

.fireworks-header .mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fireworks-header .mobile-nav-link {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1rem;
  position: relative;
}

.fireworks-header .mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--color3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.fireworks-header .mobile-nav-link:hover::after,
.fireworks-header .mobile-nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile Menu Backdrop */
.fireworks-header .mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fireworks-header .mobile-menu-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* index page starts */
/* index swiper */
/* home carousel */
section.home-carousel {
  position: relative;
}

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

section.home-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

section.home-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ======================
   INDEX HERO SECTION
   ====================== */
.index-hero {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-image: radial-gradient(
    circle at 20% 30%,
    rgba(255, 204, 0, 0.05) 0%,
    transparent 30%
  );
}

/* Content Area */
.index-hero .index-hero-content {
  padding: 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.index-hero .index-hero-inner {
  max-width: 540px;
}

/* Typography */
.index-hero .index-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000000;
  position: relative;
}

.index-hero .index-hero-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
}

.index-hero .index-hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555555;
}

/* Features List - Flexbox Layout */
.index-hero .index-hero-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 40px;
}

.index-hero .index-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.index-hero .index-hero-feature-icon {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  position: relative;
}

.index-hero .index-hero-feature-icon::after {
  content: "\F272";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  color: var(--color1);
  transition: all 0.3s ease;
  background-color: var(--color3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  /* top: 50%;
  right: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-hero .index-hero-feature:hover .index-hero-feature-icon::after {
  color: var(--color2);
  transform: scale(1.15);
}

.index-hero .index-hero-feature-text {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Buttons */
.index-hero .index-hero-buttons {
  display: flex;
  gap: 15px;
  margin: 40px 0;
}

.index-hero .index-hero-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  z-index: 1;
}

.index-hero .index-hero-btn-primary {
  background-color: var(--color1);
  color: white;
}

.index-hero .index-hero-btn-secondary {
  background-color: transparent;
  color: var(--color1);
  border: 2px solid var(--color1);
}

.index-hero .index-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
  z-index: -1;
}

.index-hero .index-hero-btn:hover::before {
  left: 100%;
}

.index-hero .index-hero-btn-primary:hover {
  background-color: var(--color2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(237, 53, 0, 0.25);
}

.index-hero .index-hero-btn-secondary:hover {
  background-color: var(--color1);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(177, 59, 255, 0.15);
}

/* Testimonial */
.index-hero .index-hero-testimonial {
  border-left: 3px solid var(--color3);
  padding-left: 20px;
  margin-top: 40px;
}

.index-hero .index-hero-testimonial-text {
  font-style: italic;
  color: #555555;
  line-height: 1.6;
  position: relative;
}

.index-hero .index-hero-testimonial-text::before {
  content: "\F4B4";
  font-family: "bootstrap-icons";
  position: absolute;
  left: -30px;
  top: -5px;
  color: var(--color3);
  font-size: 1.2rem;
  opacity: 0.7;
}

.index-hero .index-hero-testimonial-author {
  font-weight: 600;
  color: #333333;
  margin-top: 10px;
}

/* Image Container */
.index-hero .index-hero-visual {
  position: relative;
}

.index-hero .index-hero-image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.index-hero .index-hero-main-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Shine Effect */
.index-hero .index-hero-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  transition: all 0.8s ease;
}

.index-hero .index-hero-image-container:hover .index-hero-shine {
  left: 150%;
}

.index-hero .index-hero-image-container:hover .index-hero-main-image {
  transform: translateY(-50%) scale(1.03);
}

/* Sparkle Elements */
.index-hero .index-hero-sparkle {
  position: absolute;
  background-color: var(--color3);
  border-radius: 50%;
  animation: sparklePulse 2s infinite alternate;
  z-index: 3;
}

.index-hero .index-hero-sparkle-1 {
  width: 18px;
  height: 18px;
  top: 15%;
  right: 25%;
  animation-delay: 0.2s;
}

.index-hero .index-hero-sparkle-2 {
  width: 12px;
  height: 12px;
  bottom: 25%;
  right: 15%;
  animation-delay: 0.5s;
}

/* Badge */
.index-hero .index-hero-badge {
  position: absolute;
  bottom: 20%;
  left: 10%;
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 4;
  transform: rotate(-5deg);
}

.index-hero .index-hero-badge-text {
  font-weight: 700;
  color: var(--color1);
  position: relative;
}

.index-hero .index-hero-badge-text::after {
  content: "\F33E";
  font-family: "bootstrap-icons";
  margin-left: 8px;
  color: var(--color3);
}

/* Keyframes */
@keyframes sparklePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}
/* index-parallax section - fully scoped */
.index-parallax {
  position: relative;
  overflow: hidden;
}

.index-parallax .index-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/index-parallax-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.index-parallax .index-parallax-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(177, 59, 255, 0.3) 0%,
    rgba(237, 53, 0, 0.4) 100%
  );
  z-index: 2;
}

.index-parallax .index-parallax-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  text-shadow: 5px 8px 5px rgba(0, 0, 0, 0.3);
}

.index-parallax .index-parallax-text {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
  line-height: 1.6;
}

.index-parallax .index-parallax-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 3;
  border: none;
  display: inline-flex;
  align-items: center;
}

.index-parallax .index-parallax-btn-primary {
  background-color: var(--color1);
  color: #ffffff;
}

.index-parallax .index-parallax-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.index-parallax .index-parallax-btn-primary:hover {
  background-color: var(--color2);
}

.index-parallax .index-parallax-btn span {
  position: relative;
  z-index: 2;
}

.index-parallax .index-parallax-btn::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
  z-index: 2;
}

.index-parallax .index-parallax-btn:hover::after {
  transform: translateX(4px);
}
/* index products */
/* Main Container */
.products-swiper {
  background: linear-gradient(
    135deg,
    rgba(177, 59, 255, 0.1) 0%,
    rgba(237, 53, 0, 0.1) 50%,
    rgba(255, 204, 0, 0.1) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Title Styles */
.products-swiper-title {
  font-size: 3rem;
  background: linear-gradient(
    45deg,
    var(--color1),
    var(--color2),
    var(--color3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(177, 59, 255, 0.5);
}

/* Swiper Container */
.products-swiper .swiper-container {
  padding: 50px 20px;
  overflow: visible;
}

/* Slide Styles */
.products-swiper .swiper-slide {
  width: 320px;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

/* Active Slide */
.products-swiper .swiper-slide-active {
  transform: scale(1.1) translateZ(50px);
  z-index: 10;
}

/* Adjacent Slides */
.products-swiper .swiper-slide-next {
  transform: rotateY(15deg) scale(0.9) translateX(30px);
}

.products-swiper .swiper-slide-prev {
  transform: rotateY(-15deg) scale(0.9) translateX(-30px);
}

/* Product Card */
.products-swiper .product-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.products-swiper .product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--color1), var(--color2));
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(177, 59, 255, 0.3);
}

.products-swiper .product-card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color3), var(--color1));
  transition: left 0.4s ease;
  z-index: -1;
}

.products-swiper .product-card-btn:hover::before {
  left: 0;
}

.products-swiper .product-card-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(237, 53, 0, 0.4);
}

/* Image Container */
.products-swiper .product-card-image-container {
  height: 220px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
  position: relative;
}

/* Navigation Buttons */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .products-swiper .swiper-slide {
    width: 280px;
  }
}
/* index counter section */
/* Counter Section - Scoped Styles */
/* Counter Section Styles */
.counter-section {
  background-color: #0a0a12;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.counter-section .heading-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

/* Counter Cards */
.counter-section .counter-card {
  background: rgba(30, 30, 45, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.counter-section .counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--color1);
  background: rgba(40, 40, 60, 0.8);
}

/* Counter Icons */
.counter-section .counter-icon-container {
  transition: all 0.3s ease;
}

.counter-section .counter-icon {
  color: var(--color1);
  transition: all 0.3s ease;
}

.counter-section .counter-card:hover .counter-icon {
  color: var(--color3);
  transform: scale(1.2);
}

/* Counter Numbers */
.counter-section .counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color1);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  overflow: visible !important;
}

.counter-section .counter-card:hover .counter-number {
  color: var(--color3);
}

.counter-section .counter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Odometer Fix */
.counter-section .odometer-digit {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  overflow: hidden !important;
}

.counter-section .odometer-digit-inner {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  overflow: hidden !important;
}
/* index cta section */
/* CTA Section - Scoped Styles */
.cta-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.cta-section .cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a12;
  margin-bottom: 1.5rem;
}

.cta-section .cta-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.cta-section .cta-text {
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .cta-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cta-section .cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-section .cta-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(177, 59, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cta-section .cta-card:hover .cta-icon-wrapper {
  background: rgba(237, 53, 0, 0.1);
}

.cta-section .cta-icon {
  color: var(--color1);
  transition: all 0.3s ease;
}

.cta-section .cta-card:hover .cta-icon {
  color: var(--color2);
  transform: scale(1.1);
}

.cta-section .cta-card-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a12;
  margin-bottom: 1rem;
}

.cta-section .cta-card-text {
  color: #666;
  margin-bottom: 1.5rem;
}

.cta-section .cta-btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.cta-section .cta-btn-products {
  background: linear-gradient(45deg, var(--color1), #c86aff);
  color: white;
}

.cta-section .cta-btn-contact {
  background: linear-gradient(45deg, var(--color2), #ff6b4a);
  color: white;
}

.cta-section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* index page ends */
/* about page starts */
/* About Intro Section - Scoped Styles */
.about-intro {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-intro .about-subheading {
  color: var(--color1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.about-intro .about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a12;
  margin-bottom: 1.5rem;
}

.about-intro .about-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

/* Image Container */
.about-intro .about-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

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

.about-intro .about-image-container:hover .about-image {
  transform: scale(1.03);
}

.about-intro .about-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-intro .about-badge-year {
  color: var(--color1);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Timeline */
.about-intro .about-timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 2rem;
}

.about-intro .about-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color1), var(--color2));
}

.about-intro .about-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.about-intro .about-timeline-year {
  position: absolute;
  left: -30px;
  top: 0;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid var(--color1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color1);
  z-index: 1;
}

.about-intro .about-timeline-content {
  padding-left: 40px;
}

.about-intro .about-timeline-content h4 {
  color: #0a0a12;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.about-intro .about-timeline-content p {
  color: #555;
  margin-bottom: 0;
}

/* CTA Button */
.about-intro .about-cta-btn {
  background: linear-gradient(45deg, var(--color1), var(--color2));
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-intro .about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(177, 59, 255, 0.2);
}
/* About Parallax - Scoped Styles */
.about-parallax {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #ffffff;
}

.about-parallax .about-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-parallax.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.about-parallax .about-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Content Styles */
.about-parallax .about-parallax-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.about-parallax .about-parallax-subtitle {
  font-size: 1.25rem;
  color: var(--color3);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-parallax .about-parallax-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Image Styles */
.about-parallax .about-parallax-image-col {
  padding: 30px;
}

.about-parallax .about-parallax-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

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

/* Divider */
.about-parallax .about-parallax-divider {
  position: absolute;
  bottom: 550px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../images/about-divider.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.about-parallax .about-parallax-divider-two {
  position: absolute;
  top: 550px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../images/about-divider-bottom.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Why Choose Section - Scoped Styles */
/* Why Choose Section - Scoped Styles */
.why-choose {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.why-choose .why-choose-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a12;
  margin-bottom: 1.5rem;
}

.why-choose .why-choose-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.why-choose .why-choose-intro {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.why-choose .why-choose-card-col {
  padding: 15px;
  perspective: 1000px;
}

.why-choose .why-choose-card {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

/* Rotating Animation - Dangling Swing (Safe for Text) */
.why-choose .why-choose-card-1 {
  animation: swingCard 4s ease-in-out infinite;
}

.why-choose .why-choose-card-2 {
  animation: swingCardReverse 5s ease-in-out infinite;
}

.why-choose .why-choose-card-3 {
  animation: swingCard 6s ease-in-out infinite;
}

.why-choose .why-choose-card-4 {
  animation: swingCardReverse 7s ease-in-out infinite;
}

.why-choose .why-choose-card-5 {
  animation: swingCard 8s ease-in-out infinite;
}

.why-choose .why-choose-card-6 {
  animation: swingCardReverse 9s ease-in-out infinite;
}

/* Swing Animation Keyframes */
@keyframes swingCard {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes swingCardReverse {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

.why-choose .why-choose-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.why-choose .why-choose-icon {
  fill: var(--color1);
  width: 40px;
  height: 40px;
  transition: all 0.5s ease;
}

.why-choose .why-choose-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a0a12;
  margin-bottom: 1rem;
}

.why-choose .why-choose-card-text {
  color: #555;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.why-choose .why-choose-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(177, 59, 255, 0.15);
}

.why-choose .why-choose-card:hover .why-choose-icon {
  fill: var(--color2);
  transform: rotate(15deg) scale(1.2);
}
/* about page ends */
/* safetytips page */
/* Safety Tips Page Styles */
.safety-tips-page .dos-donts-section {
  background-color: #f8f9fa;
}

.safety-tips-page .section-title {
  color: var(--color4);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.safety-tips-page .section-subtitle {
  color: #6c757d;
  font-size: 1.2rem;
}

.safety-tips-page .divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--color1), var(--color2));
  margin: 1.5rem auto;
}

/* Do's Container Styles */
.safety-tips-page .dos-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--color2);
}

.safety-tips-page .dos-header {
  display: flex;
  align-items: center;
}

.safety-tips-page .dos-header i {
  color: var(--color2);
  font-size: 1.8rem;
  margin-right: 1rem;
}

.safety-tips-page .dos-header h3 {
  color: var(--color4);
  font-size: 1.8rem;
  margin: 0;
}

.safety-tips-page .dos-list {
  list-style: none;
  padding: 0;
}

.safety-tips-page .do-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.safety-tips-page .do-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.safety-tips-page .do-item::before {
  content: "✓";
  color: var(--color2);
  font-weight: bold;
  margin-right: 1rem;
}

.safety-tips-page .item-text {
  color: #495057;
  font-size: 1.1rem;
}

/* Don'ts Container Styles */
.safety-tips-page .donts-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--color1);
}

.safety-tips-page .donts-header {
  display: flex;
  align-items: center;
}

.safety-tips-page .donts-header i {
  color: var(--color1);
  font-size: 1.8rem;
  margin-right: 1rem;
}

.safety-tips-page .donts-header h3 {
  color: var(--color4);
  font-size: 1.8rem;
  margin: 0;
}

.safety-tips-page .donts-list {
  list-style: none;
  padding: 0;
}

.safety-tips-page .dont-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.safety-tips-page .dont-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.safety-tips-page .dont-item::before {
  content: "✗";
  color: var(--color1);
  font-weight: bold;
  margin-right: 1rem;
}

/* Emergency Section Styles */
.safety-tips-page .emergency-section {
  background-color: var(--color4);
}

.safety-tips-page .emergency-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.safety-tips-page .emergency-icon {
  color: var(--color1);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.safety-tips-page .emergency-title {
  color: var(--color4);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.safety-tips-page .emergency-text {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

.safety-tips-page .emergency-btn {
  background-color: var(--color1);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.safety-tips-page .emergency-btn:hover {
  background-color: #d12e00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 53, 0, 0.3);
}
/* contact page starts */
/* ===== Contact Page - Scoped Styles ===== */
.contact-page {
  position: relative;
  overflow-x: hidden;
}

/* Hero Section */
/* .contact-page .contact-hero {
  height: 350px;
} */

.contact-page .contact-hero-image {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #041028;
  overflow: hidden;
}

.contact-page .contact-hero-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-page .contact-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 2;
}

.contact-page .contact-hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-hero-subtitle {
  color: var(--color3);
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Cards */
.contact-page .contact-cards-section {
  background-color: #f8f9fa;
}

.contact-page .section-title {
  color: var(--color1);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-page .section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.contact-page .divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--color3), var(--color2));
  margin: 1.5rem auto;
  position: relative;
}

.contact-page .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color1);
}

.contact-page .contact-card {
  position: relative;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-page .contact-card:hover {
  transform: translateY(-10px);
}

.contact-page .card-shape {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.contact-page .card-shape svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-page .card-content {
  padding: 2rem 1.5rem;
  background: white;
  text-align: center;
}

.contact-page .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -50px;
  margin-bottom: -30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-page .phone-card .card-icon {
  background-color: var(--color1);
}

.contact-page .email-card .card-icon {
  background-color: var(--color3);
}

.contact-page .visit-card .card-icon {
  background-color: var(--color2);
}
.contact-page .branch-card .card-icon {
  background-color: var(--color4);
}

.contact-page .card-title {
  color: #e8290a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-page .card-text {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-page .card-link {
  color: #e8290a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-page .phone-card .card-link:hover {
  color: var(--color1);
}

.contact-page .email-card .card-link:hover {
  color: var(--color3);
}

.contact-page .visit-card .card-link:hover {
  color: var(--color2);
}

/* Map Section */
.contact-page .map-section {
  position: relative;
}

.contact-page .map-container {
  position: relative;
  height: 400px;
}

.contact-page .map-iframe-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.contact-page .map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA Section */
.contact-page .contact-cta {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
}

.contact-page .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-page .cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page .cta-btn {
  background-color: var(--color3);
  color: #000;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-page .cta-btn:hover {
  background-color: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* footer styles */
/* ===== Footer Styles ===== */
.site-footer {
  background-color: #041028f7 !important;
  background-image: url("../images/footer-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}
/* utility classes */
.text-purple {
  color: var(--color2);
}
.text-red {
  color: var(--color1);
}
.text-yellow {
  color: var(--color3);
}
.bg-purple {
  background-color: var(--color2);
}
.bg-red {
  background-color: var(--color1);
}
.bg-yellow {
  background-color: var(--color3);
}
/* theme button */
/* Theme Button - Simplified Two-Color Version */
.theme-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, var(--color1), var(--color2));
  color: white;
  padding: 0.8rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(177, 59, 255, 0.25);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-btn-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* ::before - Translucent Overlay */
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(177, 59, 255, 0.8),
    rgba(237, 53, 0, 0.8)
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ::after - Light Reflection */
.theme-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(30deg);
  z-index: 1;
  transition: all 0.7s ease;
}

/* Hover Effects */
.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(177, 59, 255, 0.35);
  color: #ffffff;
  opacity: 1;
}

.theme-btn:hover::before {
  opacity: 0;
}

.theme-btn:hover::after {
  left: 120%;
}

.theme-btn:hover .theme-btn-text {
  transform: scale(1.05);
}

/* Active State */
.theme-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 15px rgba(177, 59, 255, 0.3);
}

/* Focus State */
.theme-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(177, 59, 255, 0.4);
}

/* Size Variations */
.theme-btn-sm {
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
}

.theme-btn-lg {
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
}
/* 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 queries ******************************************/
@media (min-width: 1px) and (max-width: 767.98px) {
  /* Header */
  .fireworks-header .fireworks-nav-container {
    height: 120px;
  }

  /* Index Hero */
  .index-hero {
    padding: 40px 0;
  }
  .index-hero .index-hero-content {
    padding: 0 25px;
    margin-bottom: 40px;
  }
  .index-hero .index-hero-title {
    font-size: 2.3rem;
  }
  .index-hero .index-hero-buttons {
    flex-direction: column;
  }
  .index-hero .index-hero-image-container {
    min-height: 350px;
  }
  .index-hero .index-hero-features {
    gap: 15px;
    margin: 25px 0 35px;
  }

  /* Index Parallax */
  .index-parallax {
    height: 400px;
  }
  .index-parallax .index-parallax-background {
    background-attachment: scroll;
  }
  .index-parallax .index-parallax-title {
    font-size: 2.2rem;
  }
  .index-parallax .index-parallax-text {
    font-size: 1.1rem;
  }

  /* Products Swiper */
  .products-swiper .swiper-slide {
    width: 280px;
  }
  .products-swiper {
    padding: 50px 0;
  }

  /* Counter Section */
  .counter-section .counter-number {
    font-size: 2rem;
  }
  .counter-section .counter-text {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-heading {
    font-size: 2rem;
  }
  .cta-section .cta-text {
    font-size: 1rem;
  }
  .cta-section .cta-card {
    padding: 25px;
  }

  /* About Intro */
  .about-intro {
    padding: 60px 0;
  }
  .about-intro .about-heading {
    font-size: 2rem;
  }
  .about-intro .about-timeline {
    padding-left: 20px;
  }
  .about-intro .about-timeline-year {
    width: 40px;
    height: 40px;
    left: -20px;
    font-size: 0.9rem;
  }

  /* About Parallax */
  .about-parallax {
    padding: 60px 0;
  }

  .about-parallax .about-parallax-content,
  .about-parallax .about-parallax-image-col {
    padding: 15px;
  }

  .about-parallax .about-parallax-title {
    font-size: 2rem;
  }

  .about-parallax .about-parallax-subtitle {
    font-size: 1rem;
  }

  .about-parallax .about-parallax-divider {
    height: 50px;
  }
  .about-parallax .about-parallax-divider-two {
    top: 690px;
  }
  .about-parallax .about-parallax-divider {
    bottom: 740px;
  }

  /* Why Choose */
  .why-choose {
    padding: 60px 0;
  }
  .why-choose .why-choose-heading {
    font-size: 2rem;
  }
  .why-choose .why-choose-card {
    padding: 30px 15px;
    animation: none;
    clip-path: none;
    border-radius: 15px;
  }
  .why-choose .why-choose-card-icon {
    width: 60px;
    height: 60px;
  }

  /* Safety Tips */
  .safety-tips-page .section-title {
    font-size: 1.8rem;
  }

  .safety-tips-page .section-subtitle {
    font-size: 1rem;
  }

  .safety-tips-page .divider {
    height: 3px;
    width: 60px;
    margin: 1rem auto;
  }

  .safety-tips-page .dos-header h3,
  .safety-tips-page .donts-header h3 {
    font-size: 1.4rem;
  }

  .safety-tips-page .dos-header i,
  .safety-tips-page .donts-header i {
    font-size: 1.5rem;
  }

  .safety-tips-page .item-text {
    font-size: 0.95rem;
  }

  .safety-tips-page .emergency-icon {
    font-size: 2.5rem;
  }

  .safety-tips-page .emergency-title {
    font-size: 1.5rem;
  }

  .safety-tips-page .emergency-text {
    font-size: 0.95rem;
  }

  .safety-tips-page .emergency-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Contact Page */
  .contact-page .contact-hero {
    height: 250px;
  }
  .contact-page .contact-hero-title {
    font-size: 2rem;
  }
  .contact-page .contact-hero-subtitle {
    font-size: 1.1rem;
  }
  .contact-page .section-title {
    font-size: 1.5rem;
  }
  .contact-page .map-container {
    height: 300px;
  }
  .contact-page .cta-title {
    font-size: 1.75rem;
  }
  .contact-page .cta-text {
    font-size: 1rem;
  }

  /* Footer */
  .site-footer .footer-logo-img {
    height: 80px;
  }
  .site-footer .footer-heading::after {
    left: 8%;
    transform: translateX(-50%);
  }
  .site-footer .footer-nav a:hover {
    transform: none;
  }
  .site-footer .footer-contact-info {
    display: inline-block;
    text-align: left;
  }
  /* Utility */
  .pad {
    padding: 40px 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Header */
  .fireworks-header .fireworks-nav-container {
    height: 140px;
  }
  .fireworks-header .fireworks-logo img {
    height: 70px;
  }

  /* Index Hero */
  .index-hero .index-hero-title {
    font-size: 2.8rem;
  }
  .index-hero .index-hero-content {
    padding: 0 30px;
  }
  .index-hero .index-hero-main-image {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
  }

  /* Index Parallax */
  .index-parallax {
    height: 450px;
  }
  .index-parallax .index-parallax-title {
    font-size: 2.5rem;
  }

  /* Counter Section */
  .counter-section .counter-number {
    font-size: 2.2rem;
  }

  /* CTA Section */
  .cta-section .cta-heading {
    font-size: 2.2rem;
  }

  /* About Intro */
  .about-intro .about-heading {
    font-size: 2.2rem;
  }

  /* About Parallax */
  .about-parallax .about-parallax-title {
    font-size: 2.2rem;
  }
  .about-parallax .about-parallax-divider-two {
    top: 385px;
  }
  .about-parallax .about-parallax-divider {
    bottom: 350px;
  }

  /* Why Choose */
  .why-choose .why-choose-heading {
    font-size: 2.2rem;
  }
  .why-choose .why-choose-card-title {
    font-size: 1.2rem;
  }

  /* Safety Tips */
  .safety-tips-page .section-title {
    font-size: 2.2rem;
  }

  .safety-tips-page .section-subtitle {
    font-size: 1.1rem;
  }

  .safety-tips-page .dos-header h3,
  .safety-tips-page .donts-header h3 {
    font-size: 1.6rem;
  }

  .safety-tips-page .item-text {
    font-size: 1rem;
  }

  .safety-tips-page .emergency-title {
    font-size: 1.8rem;
  }

  .safety-tips-page .emergency-text {
    font-size: 1rem;
  }
  /* Contact Page */
  .contact-page .section-title {
    font-size: 1.75rem;
  }
  .contact-page .map-container {
    height: 350px;
  }

  /* Footer */
  .site-footer .footer-logo-img {
    height: 90px;
  }

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