@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.13.1/font/bootstrap-icons.min.css");

:root {
  --violet: #4b0082;
  --red: #e63946;
  --yellow: #ffd60a;
  --black: #0b090a;
  --white: #f1faee;
}

.navbar-bg {
  border-color: #35063E !important;
}

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

.safetytipsbg {
  background-image: url("../images/safetytips.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.social_img {
  width: 50px;
}

.social_point2 {
  bottom: 130px;
  left: 10px;
}

.wrdbrk {
  white-space: pre;
}

a {
  text-decoration: none !important;
}

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

.heading1 {
  font-size: 2.5rem;
}

.heading2 {
  font-size: 2rem;
}

.heading3 {
  font-size: 1.75rem;
}

.heading4 {
  font-size: 1.5rem;
}

.heading5 {
  font-size: 1.25rem;
}

.heading6 {
  font-size: 1rem;
}

.pad {
  padding: 90px 0;
}

.wrdbrk {
  white-space: pre;
}

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

/* custom css starts */
/* Topbar */
.sparkle-header-topbar {
  background: var(--violet);
  color: #fff;
  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;
}

/* Floating Contact Bar */
.pyro-floating-contact {
  background: linear-gradient(135deg, var(--violet), var(--red));
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.pyro-floating-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.pyro-floating-contact .pyro-contact-scroll {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.pyro-floating-contact .pyro-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pyro-floating-contact .pyro-social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.pyro-floating-contact .pyro-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pyro-floating-contact .pyro-social-link:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* Main Header */
.pyro-header {
  position: relative;
  background: #35063e;
  box-shadow: 0 10px 40px rgba(75, 0, 130, 0.1);
  z-index: 1000;
}

.pyro-header .pyro-header-wrapper {
  position: relative;
  padding: 20px 0;
}

/* Logo Section */
.pyro-header .pyro-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pyro-header .pyro-logo-burst {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--yellow), var(--red));
  /* border-radius: 50%; */
  opacity: 0.1;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.pyro-header .pyro-logo {
  position: relative;
  z-index: 2;
  max-height: 145px;
  filter: drop-shadow(0 5px 15px rgba(75, 0, 130, 0.2));
}

/* Navigation Hub */
.pyro-header .pyro-nav-hub {
  position: relative;
}

.pyro-header .pyro-nav-container {
  background: linear-gradient(135deg, var(--violet), var(--black));
  border-radius: 50px;
  padding: 10px 15px;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.3);
  position: relative;
  overflow: hidden;
}

.pyro-header .pyro-nav-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 214, 10, 0.1) 50%,
      transparent 70%);
  pointer-events: none;
}

.pyro-header .pyro-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pyro-header .pyro-nav-item {
  position: relative;
}

.pyro-header .pyro-nav-center {
  transform: scale(1.1);
}

.pyro-header .pyro-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  max-width: 6em;
  min-width: 6em;
}

.pyro-header .pyro-nav-link i {
  font-size: 18px;
}

.pyro-header .pyro-nav-link:hover,
.pyro-header .pyro-nav-link.active {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 5px 20px rgba(255, 214, 10, 0.4);
}

/* Action Zone */
.pyro-header .pyro-action-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pyro-header .pyro-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.pyro-header .pyro-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  color: var(--white);
  text-decoration: none;
}

.pyro-header .pyro-mobile-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--violet);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pyro-header .pyro-burger-line {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.pyro-header .pyro-mobile-trigger:hover {
  background: var(--red);
  transform: scale(1.05);
}

/* Decorative Sparks */
.pyro-header .pyro-header-sparks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.pyro-header .pyro-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  animation: sparkle 3s infinite;
}

.pyro-header .pyro-spark-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.pyro-header .pyro-spark-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.pyro-header .pyro-spark-3 {
  bottom: 30%;
  left: 70%;
  animation-delay: 2s;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Menu */
.pyro-mobile-menu .modal-content {
  background: linear-gradient(135deg, var(--black), var(--violet));
  border: none;
  border-radius: 0;
}

.pyro-mobile-menu .pyro-mobile-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pyro-mobile-menu .pyro-mobile-logo img {
  max-height: 100px;
}

.pyro-mobile-menu .pyro-close-btn {
  width: 40px;
  height: 40px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.pyro-mobile-menu .pyro-close-line {
  width: 20px;
  height: 2px;
  background: var(--white);
  position: absolute;
}

.pyro-mobile-menu .pyro-close-line:first-child {
  transform: rotate(45deg);
}

.pyro-mobile-menu .pyro-close-line:last-child {
  transform: rotate(-45deg);
}

.pyro-mobile-menu .pyro-mobile-body {
  padding: 30px 20px;
}

.pyro-mobile-menu .pyro-mobile-nav {
  margin-bottom: 40px;
}

.pyro-mobile-menu .pyro-mobile-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pyro-mobile-menu .pyro-mobile-link:hover,
.pyro-mobile-menu .pyro-mobile-link.active {
  color: var(--yellow);
  padding-left: 10px;
}

.pyro-mobile-menu .pyro-mobile-link i:first-child {
  font-size: 20px;
  width: 25px;
}

.pyro-mobile-menu .pyro-mobile-link i:last-child {
  margin-left: auto;
}

.pyro-mobile-menu .pyro-mobile-actions {
  margin-bottom: 40px;
}

.pyro-mobile-menu .pyro-mobile-download {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  justify-content: center;
}

.pyro-mobile-menu .pyro-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pyro-mobile-menu .pyro-contact-card i {
  font-size: 20px;
  color: var(--yellow);
  margin-top: 5px;
}

.pyro-mobile-menu .pyro-contact-card strong {
  color: var(--white);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.pyro-mobile-menu .pyro-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-floating-contact .pyro-contact-scroll {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .pyro-header .pyro-header-wrapper {
    padding: 15px 0;
  }

  .pyro-header .pyro-logo {
    max-height: 100px;
  }

  .pyro-header .pyro-logo-burst {
    width: 60px;
    height: 60px;
  }

  .pyro-header .pyro-action-zone {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-header .pyro-nav-container {
    padding: 8px 15px;
  }

  .pyro-header .pyro-nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .pyro-header .pyro-nav-link i {
    font-size: 16px;
  }

  .pyro-header .pyro-download-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .pyro-header .pyro-action-zone {
    justify-content: flex-end;
  }
}

/* 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 welcome */
/* Welcome Section */
.pyro-welcome {
  background: var(--white);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Content Styling */
.pyro-welcome .pyro-welcome-content {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.pyro-welcome .pyro-welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(75, 0, 130, 0.2);
}

.pyro-welcome .pyro-welcome-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 25px;
}

.pyro-welcome .pyro-highlight {
  color: var(--red);
  position: relative;
}

.pyro-welcome .pyro-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  opacity: 0.3;
  z-index: -1;
}

.pyro-welcome .pyro-sparkle {
  background: linear-gradient(135deg, var(--violet), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.pyro-welcome .pyro-welcome-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(11, 9, 10, 0.7);
  margin-bottom: 35px;
  font-weight: 400;
}

/* CTA Buttons */
.pyro-welcome .pyro-welcome-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pyro-welcome .pyro-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.pyro-welcome .pyro-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
  color: var(--white);
  text-decoration: none;
}

.pyro-welcome .pyro-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  border: 2px solid var(--violet);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pyro-welcome .pyro-cta-secondary:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(75, 0, 130, 0.3);
}

/* Visual Column */
.pyro-welcome .pyro-welcome-visual {
  position: relative;
  padding: 40px 0;
}

.pyro-welcome .pyro-hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pyro-welcome .pyro-hero-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--yellow), var(--red));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

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

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pyro-welcome .pyro-hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.2);
  max-height: 500px;
  object-fit: cover;
}

.pyro-welcome .pyro-float-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Background Decorations */
.pyro-welcome .pyro-welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.pyro-welcome .pyro-bg-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.6;
  animation: sparkle 4s infinite;
}

.pyro-welcome .pyro-bg-spark-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.pyro-welcome .pyro-bg-spark-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

.pyro-welcome .pyro-bg-spark-3 {
  bottom: 30%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-welcome {
    padding: 60px 0;
  }

  .pyro-welcome .pyro-welcome-content {
    padding: 20px 0;
    text-align: center;
  }

  .pyro-welcome .pyro-welcome-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .pyro-welcome .pyro-welcome-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .pyro-welcome .pyro-welcome-cta {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .pyro-welcome .pyro-cta-primary,
  .pyro-welcome .pyro-cta-secondary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 28px;
  }

  .pyro-welcome .pyro-hero-backdrop {
    width: 300px;
    height: 300px;
  }

  .pyro-welcome .pyro-hero-image {
    max-height: 350px;
  }

  .pyro-welcome .pyro-float-badge {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-welcome .pyro-welcome-title {
    font-size: 3rem;
  }

  .pyro-welcome .pyro-welcome-subtitle {
    font-size: 1.1rem;
  }

  .pyro-welcome .pyro-cta-primary,
  .pyro-welcome .pyro-cta-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .pyro-welcome .pyro-hero-backdrop {
    width: 350px;
    height: 350px;
  }

  .pyro-welcome .pyro-hero-image {
    max-height: 450px;
  }
}

/* index products section */
.pyro-products {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

/* Section Header */
.pyro-products .pyro-products-header {
  margin-bottom: 60px;
}

.pyro-products .pyro-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pyro-products .pyro-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.pyro-products .pyro-section-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

/* Swiper Container - Fixed overflow issues */
.pyro-products .pyro-products-swiper {
  padding: 40px 50px 80px;
  /* Add horizontal padding for navigation */
  overflow: hidden;
  /* Prevent content overflow */
  margin: 0 -50px;
  /* Negative margin to compensate padding */
}

.pyro-products .swiper-wrapper {
  align-items: stretch;
  /* Ensure equal height slides */
}

.pyro-products .swiper-slide {
  width: 350px;
  transition: none;
  /* Remove slide transitions that cause overflow */
  cursor: pointer;
  height: auto;
  /* Let content determine height */
}

/* Coverflow slide shadows enhancement */
.pyro-products .swiper-slide-shadow-left,
.pyro-products .swiper-slide-shadow-right {
  background: linear-gradient(135deg,
      rgba(75, 0, 130, 0.2),
      rgba(230, 57, 70, 0.2));
}

/* Product Cards - Controlled transforms */
.pyro-products .pyro-product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(75, 0, 130, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  /* Center transform origin */
  will-change: transform;
  /* Optimize for transforms */
}

.pyro-products .pyro-swiper-next,
.pyro-products .pyro-swiper-prev {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.2);
  color: var(--violet);
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 0;
  /* Reset margin */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Center adjustment */
}

.pyro-products .pyro-swiper-next {
  right: 10px;
  /* Position from container edge */
}

.pyro-products .pyro-swiper-prev {
  left: 10px;
  /* Position from container edge */
}

.pyro-products .pyro-swiper-next:hover,
.pyro-products .pyro-swiper-prev:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.pyro-products .pyro-swiper-next::after,
.pyro-products .pyro-swiper-prev::after {
  display: none;
}

.pyro-products .pyro-swiper-next,
.pyro-products .pyro-swiper-prev {
  position: absolute;
  /* Required for positioning */
  z-index: 10;
  /* Ensure visibility over cards */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Active slide enhancement - Reduced scale to prevent overflow */
.pyro-products .swiper-slide-active .pyro-product-card {
  box-shadow: 0 25px 70px rgba(75, 0, 130, 0.25);
  transform: scale(1.02);
  /* Reduced from 1.05 */
}

/* Controlled Zoom Hover Effects - Prevent overflow */
.pyro-products .pyro-product-card.pyro-card-hover {
  transform: scale(1.03) translateY(-10px);
  /* Reduced from 1.08 */
  box-shadow: 0 30px 80px rgba(75, 0, 130, 0.3);
  z-index: 5;
  /* Lower z-index */
}

.pyro-products .pyro-product-card.pyro-card-active-hover {
  transform: scale(1.05) translateY(-15px);
  /* Reduced from 1.12 */
  box-shadow: 0 35px 90px rgba(230, 57, 70, 0.4);
}

/* Image zoom on hover - Controlled scaling */
.pyro-products .pyro-product-card.pyro-card-hover .pyro-product-image img {
  transform: scale(1.1);
  /* Reduced from 1.15 */
}

.pyro-products .pyro-product-card.pyro-card-active-hover .pyro-product-image img {
  transform: scale(1.15);
  /* Reduced from 1.2 */
}

/* Enhanced product image styling */
.pyro-products .pyro-product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.pyro-products .pyro-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced overlay effects */
.pyro-products .pyro-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(75, 0, 130, 0.1));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
  transition: background 0.3s ease;
}

.pyro-products .pyro-product-card.pyro-card-hover .pyro-product-overlay {
  background: linear-gradient(135deg,
      rgba(75, 0, 130, 0.1),
      rgba(230, 57, 70, 0.15));
}

/* Badge animations */
.pyro-products .pyro-product-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.pyro-products .pyro-product-card.pyro-card-hover .pyro-product-badge {
  animation: none;
  transform: scale(1.1);
}

.pyro-products .pyro-badge-loud {
  background: var(--red);
  color: var(--white);
}

.pyro-products .pyro-badge-aerial {
  background: var(--violet);
  color: var(--white);
}

.pyro-products .pyro-badge-safe {
  background: #28a745;
  color: var(--white);
}

.pyro-products .pyro-badge-spin {
  background: var(--red);
  color: var(--white);
}

.pyro-products .pyro-badge-kids {
  background: #ff6b9d;
  color: var(--white);
}

.pyro-products .pyro-product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pyro-products .pyro-product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.pyro-products .pyro-product-desc {
  color: rgba(11, 9, 10, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pyro-products .pyro-product-features {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.pyro-products .pyro-product-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--violet);
  background: rgba(75, 0, 130, 0.1);
  padding: 5px 10px;
  border-radius: 10px;
}

.pyro-products .pyro-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pyro-products .pyro-product-btn:hover {
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Swiper Navigation - Fixed positioning */
.pyro-products .pyro-swiper-next,
.pyro-products .pyro-swiper-prev {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.2);
  color: var(--violet);
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 0;
  /* Reset margin */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Center adjustment */
}

.pyro-products .pyro-swiper-next {
  right: 10px;
  /* Position from container edge */
}

.pyro-products .pyro-swiper-prev {
  left: 10px;
  /* Position from container edge */
}

.pyro-products .pyro-swiper-next:hover,
.pyro-products .pyro-swiper-prev:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.pyro-products .pyro-swiper-next::after,
.pyro-products .pyro-swiper-prev::after {
  display: none;
}

/* Swiper Pagination */
.pyro-products .pyro-swiper-pagination {
  bottom: 20px !important;
  position: relative;
  /* Change from absolute to relative */
  margin-top: 20px;
  /* Add spacing */
}

.pyro-products .pyro-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(75, 0, 130, 0.3);
  opacity: 1;
}

.pyro-products .pyro-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--violet);
  transform: scale(1.2);
}

/* Loading state enhancements */
.pyro-products .pyro-products-swiper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.pyro-products .pyro-products-swiper.swiper-initialized,
.pyro-products.swiper-loaded .pyro-products-swiper {
  opacity: 1;
  transform: translateY(0);
}

/* Animation states for counter cards */
.pyro-products .pyro-product-card.counter-animating {
  transform: translateY(-5px) scale(1.01);
  /* Reduced scale */
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.15);
}

.pyro-products .pyro-product-card.counter-animating .pyro-product-icon i {
  animation: bounceIcon 0.6s ease-out;
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  /* Reduced scale */
}

/* Responsive adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-products {
    padding: 60px 0;
  }

  .pyro-products .pyro-products-header {
    margin-bottom: 40px;
  }

  .pyro-products .pyro-section-title {
    font-size: 2.2rem;
  }

  .pyro-products .pyro-products-swiper {
    padding: 30px 20px 60px;
    /* Reduced horizontal padding */
    margin: 0 -20px;
  }

  .pyro-products .swiper-slide {
    width: 280px;
    /* Smaller width on mobile */
  }

  .pyro-products .pyro-product-image {
    height: 200px;
  }

  .pyro-products .pyro-product-content {
    padding: 20px;
  }

  .pyro-products .pyro-product-features {
    flex-direction: column;
    gap: 8px;
  }

  .pyro-products .pyro-swiper-next,
  .pyro-products .pyro-swiper-prev {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .pyro-products .pyro-swiper-next {
    right: 5px;
  }

  .pyro-products .pyro-swiper-prev {
    left: 5px;
  }

  /* Disable hover effects on mobile */
  .pyro-products .pyro-product-card.pyro-card-hover,
  .pyro-products .pyro-product-card.pyro-card-active-hover {
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-products .pyro-section-title {
    font-size: 2.5rem;
  }

  .pyro-products .pyro-products-swiper {
    padding: 35px 30px 70px;
    margin: 0 -30px;
  }

  .pyro-products .swiper-slide {
    width: 320px;
  }

  .pyro-products .pyro-product-image {
    height: 220px;
  }

  .pyro-products .pyro-product-content {
    padding: 22px;
  }

  .pyro-products .pyro-swiper-next {
    right: 15px;
  }

  .pyro-products .pyro-swiper-prev {
    left: 15px;
  }
}

/* index counter */

.pyro-counter {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.pyro-counter .pyro-counter-header {
  margin-bottom: 60px;
}

.pyro-counter .pyro-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pyro-counter .pyro-counter-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pyro-counter .pyro-counter-subtitle {
  font-size: 1.1rem;
  color: rgba(11, 9, 10, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Counters Grid using Bootstrap Grid */
.pyro-counter .pyro-counters-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pyro-counter .pyro-counter-item {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Counter Items */
.pyro-counter .pyro-counter-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 50px rgba(75, 0, 130, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pyro-counter .pyro-counter-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(75, 0, 130, 0.2);
}

/* Counter Icons */
.pyro-counter .pyro-counter-icon {
  position: relative;
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pyro-counter .pyro-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 50%;
  opacity: 0.1;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.pyro-counter .pyro-counter-icon i {
  font-size: 2.5rem;
  color: var(--violet);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.pyro-counter .pyro-counter-card:hover .pyro-counter-icon i {
  color: var(--red);
  transform: scale(1.1);
}

/* Counter Content */
.pyro-counter .pyro-counter-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pyro-counter .pyro-counter-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  display: inline-block;
  position: relative;
}

.pyro-counter .pyro-counter-suffix {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-left: 5px;
  vertical-align: top;
  margin-top: 8px;
}

.pyro-counter .pyro-counter-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin: 15px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pyro-counter .pyro-counter-desc {
  font-size: 0.95rem;
  color: rgba(11, 9, 10, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Counter Accents */
.pyro-counter .pyro-counter-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
}

.pyro-counter .pyro-counter-card:hover .pyro-counter-accent {
  width: 80px;
  height: 6px;
}

/* Odometer Styling */
.pyro-counter .odometer {
  display: inline-block;
}

.pyro-counter .odometer .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.pyro-counter .odometer .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  visibility: hidden;
}

.pyro-counter .odometer .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.pyro-counter .odometer .odometer-digit .odometer-ribbon {
  display: block;
}

.pyro-counter .odometer .odometer-digit .odometer-ribbon-inner {
  display: block;
  backface-visibility: hidden;
}

.pyro-counter .odometer .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
}

.pyro-counter .odometer.odometer-animating-up .odometer-ribbon-inner,
.pyro-counter .odometer.odometer-animating-down .odometer-ribbon-inner {
  transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Background Elements */
.pyro-counter .pyro-counter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.pyro-counter .pyro-counter-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      transparent 40%,
      rgba(75, 0, 130, 0.05) 70%);
  border-radius: 50%;
  animation: rotatePattern 20s linear infinite;
}

@keyframes rotatePattern {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pyro-counter .pyro-counter-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkTwinkle 4s infinite;
}

.pyro-counter .pyro-spark-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.pyro-counter .pyro-spark-2 {
  top: 70%;
  right: 20%;
  animation-delay: 1.5s;
}

.pyro-counter .pyro-spark-3 {
  bottom: 25%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes sparkTwinkle {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Animation states for counter cards */
.pyro-counter .pyro-counter-card.counter-animating {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.15);
}

.pyro-counter .pyro-counter-card.counter-animating .pyro-counter-icon i {
  animation: bounceIcon 0.6s ease-out;
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.pyro-counter .pyro-counter-card.counter-completed .pyro-counter-accent {
  background: linear-gradient(135deg, var(--violet), var(--yellow));
  animation: accentPulse 1s ease-out;
}

@keyframes accentPulse {
  0% {
    width: 60px;
  }

  50% {
    width: 100px;
  }

  100% {
    width: 80px;
  }
}

/* Bootstrap Grid Implementation */
@media (min-width: 992px) {
  .pyro-counter .pyro-counter-item {
    width: 33.333333%;
  }
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-counter {
    padding: 60px 0;
  }

  .pyro-counter .pyro-counter-header {
    margin-bottom: 40px;
  }

  .pyro-counter .pyro-counter-title {
    font-size: 2.2rem;
  }

  .pyro-counter .pyro-counter-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .pyro-counter .pyro-counter-card {
    padding: 30px 20px;
  }

  .pyro-counter .pyro-counter-value {
    font-size: 2.8rem;
  }

  .pyro-counter .pyro-counter-suffix {
    font-size: 1.5rem;
    margin-top: 6px;
  }

  .pyro-counter .pyro-counter-label {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-counter .pyro-counter-title {
    font-size: 2.5rem;
  }

  .pyro-counter .pyro-counter-item {
    width: 50%;
  }

  .pyro-counter .pyro-counter-value {
    font-size: 3rem;
  }
}

/* Parallax Section */
/* Parallax Section */
.pyro-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-image: url("../images/fireworks-parallax-bg.webp");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(75, 0, 130, 0.8);
  background-blend-mode: overlay;
}

.pyro-parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 9, 10, 0.79);
  z-index: 1;
}

/* Content Styling */
.pyro-parallax .pyro-parallax-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.pyro-parallax .pyro-parallax-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

.pyro-parallax .pyro-parallax-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pyro-parallax .pyro-title-highlight {
  background: linear-gradient(135deg, var(--yellow), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.pyro-parallax .pyro-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  opacity: 0.3;
}

.pyro-parallax .pyro-parallax-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* CTA Actions */
.pyro-parallax .pyro-parallax-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.pyro-parallax .pyro-parallax-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pyro-parallax .pyro-cta-primary {
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.pyro-parallax .pyro-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--violet), var(--yellow));
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.pyro-parallax .pyro-cta-primary:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.pyro-parallax .pyro-cta-primary:hover::before {
  left: 0;
}

.pyro-parallax .pyro-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.pyro-parallax .pyro-cta-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}

.pyro-parallax .pyro-cta-secondary:hover {
  color: var(--white);
  text-decoration: none;
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.pyro-parallax .pyro-cta-secondary:hover::before {
  opacity: 1;
}

/* Features List */
.pyro-parallax .pyro-parallax-features {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.pyro-parallax .pyro-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.pyro-parallax .pyro-feature-item i {
  font-size: 16px;
  color: var(--yellow);
}

/* Scroll Indicator */
.pyro-parallax .pyro-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  z-index: 2;
}

.pyro-parallax .pyro-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}

.pyro-parallax .pyro-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-parallax {
    background-attachment: scroll;
  }

  .pyro-parallax .pyro-parallax-content {
    padding: 40px 0;
  }

  .pyro-parallax .pyro-parallax-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .pyro-parallax .pyro-parallax-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .pyro-parallax .pyro-parallax-actions {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .pyro-parallax .pyro-parallax-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .pyro-parallax .pyro-parallax-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .pyro-parallax .pyro-scroll-indicator {
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-parallax {
    background-attachment: scroll;
  }

  .pyro-parallax .pyro-parallax-title {
    font-size: 3.2rem;
  }

  .pyro-parallax .pyro-parallax-subtitle {
    font-size: 1.2rem;
  }

  .pyro-parallax .pyro-parallax-actions {
    gap: 18px;
  }

  .pyro-parallax .pyro-parallax-cta {
    padding: 15px 30px;
    font-size: 1.05rem;
  }

  .pyro-parallax .pyro-parallax-features {
    gap: 30px;
  }
}

/* Showcase Section */
.pyro-showcase {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}

/* Section Header */
.pyro-showcase .pyro-showcase-header {
  margin-bottom: 60px;
}

.pyro-showcase .pyro-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pyro-showcase .pyro-showcase-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--black), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pyro-showcase .pyro-showcase-intro {
  font-size: 1.1rem;
  color: rgba(11, 9, 10, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Showcase Items */
.pyro-showcase .pyro-showcase-item {
  padding: 15px;
  margin-bottom: 30px;
}

/* Showcase Cards - Base Styling */
.pyro-showcase .pyro-showcase-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  height: 500px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  box-shadow: 0 10px 40px rgba(75, 0, 130, 0.1);
}

/* Multilayered Hover Effects */
.pyro-showcase .pyro-showcase-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(75, 0, 130, 0.25);
}

/* Image Container */
.pyro-showcase .pyro-card-image {
  position: relative;
  height: 60%;
  overflow: hidden;
}

.pyro-showcase .pyro-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--violet), var(--red));
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-image-bg {
  opacity: 0.1;
}

.pyro-showcase .pyro-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  z-index: 3;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-image-overlay {
  opacity: 1;
}

.pyro-showcase .pyro-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  position: relative;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-main-image {
  transform: scale(1.1) rotate(2deg);
}

/* Floating Badge */
.pyro-showcase .pyro-floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  z-index: 4;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
  box-shadow: 0 5px 20px rgba(255, 214, 10, 0.3);
}

.pyro-showcase .pyro-showcase-card:hover .pyro-floating-badge {
  transform: translateY(0);
  opacity: 1;
}

/* Hover Particles */
.pyro-showcase .pyro-hover-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.pyro-showcase .pyro-hover-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.pyro-showcase .pyro-particle-1 {
  top: 20%;
  left: 15%;
  transition-delay: 0.3s;
}

.pyro-showcase .pyro-particle-2 {
  top: 60%;
  right: 20%;
  transition-delay: 0.4s;
}

.pyro-showcase .pyro-particle-3 {
  bottom: 30%;
  left: 70%;
  transition-delay: 0.5s;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-hover-particle {
  opacity: 1;
  animation: particleFloat 2s infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.2);
  }
}

/* Card Content */
.pyro-showcase .pyro-card-content {
  position: relative;
  height: 40%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.pyro-showcase .pyro-content-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 214, 10, 0.05),
      rgba(230, 57, 70, 0.05));
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-content-bg {
  opacity: 1;
}

/* Primary Content */
.pyro-showcase .pyro-primary-content {
  padding: 25px;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}

.pyro-showcase .pyro-content-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  transform: scale(0.8);
}

.pyro-showcase .pyro-showcase-card:hover .pyro-content-icon {
  transform: scale(1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.3);
}

.pyro-showcase .pyro-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-content-title {
  color: var(--red);
}

.pyro-showcase .pyro-content-desc {
  font-size: 0.95rem;
  color: rgba(11, 9, 10, 0.7);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-primary-content {
  transform: translateY(-10px);
}

/* Hover Reveal Content */
.pyro-showcase .pyro-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(135deg, var(--black), var(--violet));
  color: var(--white);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  z-index: 3;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-hover-content {
  transform: translateY(0);
  opacity: 1;
}

.pyro-showcase .pyro-hover-features {
  margin-bottom: 20px;
}

.pyro-showcase .pyro-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.pyro-showcase .pyro-feature-item:nth-child(1) {
  transition-delay: 0.2s;
}

.pyro-showcase .pyro-feature-item:nth-child(2) {
  transition-delay: 0.3s;
}

.pyro-showcase .pyro-feature-item:nth-child(3) {
  transition-delay: 0.4s;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-feature-item {
  opacity: 1;
  transform: translateX(0);
}

.pyro-showcase .pyro-feature-item i {
  color: var(--yellow);
  font-size: 16px;
}

.pyro-showcase .pyro-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-hover-btn {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}

.pyro-showcase .pyro-hover-btn:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  transform: scale(1.05);
}

/* Border Effects */
.pyro-showcase .pyro-border-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.pyro-showcase .pyro-border-top,
.pyro-showcase .pyro-border-right,
.pyro-showcase .pyro-border-bottom,
.pyro-showcase .pyro-border-left {
  position: absolute;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  opacity: 0;
  transition: all 0.4s ease;
}

.pyro-showcase .pyro-border-top,
.pyro-showcase .pyro-border-bottom {
  height: 3px;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pyro-showcase .pyro-border-left,
.pyro-showcase .pyro-border-right {
  width: 3px;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pyro-showcase .pyro-border-top {
  top: 0;
}

.pyro-showcase .pyro-border-right {
  right: 0;
}

.pyro-showcase .pyro-border-bottom {
  bottom: 0;
}

.pyro-showcase .pyro-border-left {
  left: 0;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-border-top,
.pyro-showcase .pyro-showcase-card:hover .pyro-border-bottom {
  width: 100%;
  opacity: 1;
}

.pyro-showcase .pyro-showcase-card:hover .pyro-border-left,
.pyro-showcase .pyro-showcase-card:hover .pyro-border-right {
  height: 100%;
  opacity: 1;
}

/* CTA Section */
.pyro-showcase .pyro-showcase-cta {
  margin-top: 50px;
}

.pyro-showcase .pyro-showcase-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid var(--violet);
  border-radius: 50px;
  color: var(--violet);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pyro-showcase .pyro-btn-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--violet), var(--red));
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.pyro-showcase .pyro-showcase-btn:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(75, 0, 130, 0.3);
}

.pyro-showcase .pyro-showcase-btn:hover .pyro-btn-ripple {
  left: 0;
}

.pyro-showcase .pyro-btn-icon {
  transition: all 0.3s ease;
}

.pyro-showcase .pyro-showcase-btn:hover .pyro-btn-icon {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-showcase {
    padding: 60px 0;
  }

  .pyro-showcase .pyro-showcase-header {
    margin-bottom: 40px;
  }

  .pyro-showcase .pyro-showcase-title {
    font-size: 2.2rem;
  }

  .pyro-showcase .pyro-showcase-card {
    height: 100%;
  }

  .pyro-showcase .pyro-card-image {
    height: 65%;
  }

  .pyro-showcase .pyro-card-content {
    height: 35%;
  }

  .pyro-showcase .pyro-primary-content {
    padding: 20px;
  }

  .pyro-showcase .pyro-content-title {
    font-size: 1.3rem;
  }

  .pyro-showcase .pyro-showcase-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }

  /* Disable complex hover effects on mobile */
  .pyro-showcase .pyro-showcase-card:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .pyro-showcase .pyro-showcase-card:hover .pyro-main-image {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-showcase .pyro-showcase-title {
    font-size: 2.5rem;
  }

  .pyro-showcase .pyro-showcase-card {
    height: 100%;
  }

  .pyro-showcase .pyro-showcase-btn {
    padding: 16px 36px;
  }
}

/* index page ends */
/* about page starts */
/* About Intro Section */
.pyro-about-intro {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Content Styling */
.pyro-about-intro .pyro-about-content {
  padding: 40px 0;
}

.pyro-about-intro .pyro-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(75, 0, 130, 0.2);
}

.pyro-about-intro .pyro-about-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--black);
}

.pyro-about-intro .pyro-title-highlight {
  background: linear-gradient(135deg, var(--red), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.pyro-about-intro .pyro-title-accent {
  color: var(--red);
  position: relative;
}

.pyro-about-intro .pyro-title-accent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  opacity: 0.3;
  z-index: -1;
}

.pyro-about-intro .pyro-about-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(11, 9, 10, 0.7);
  margin-bottom: 40px;
  font-weight: 400;
}

/* Story Points */
.pyro-about-intro .pyro-story-points {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pyro-about-intro .pyro-story-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 15px;
  width: 100%;
}

.pyro-about-intro .pyro-story-item:hover {
  background: rgba(75, 0, 130, 0.05);
  transform: translateX(10px);
}

.pyro-about-intro .pyro-story-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pyro-about-intro .pyro-story-item:hover .pyro-story-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.4);
}

.pyro-about-intro .pyro-story-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.pyro-about-intro .pyro-story-content p {
  font-size: 0.95rem;
  color: rgba(11, 9, 10, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Action Buttons */
.pyro-about-intro .pyro-about-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pyro-about-intro .pyro-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pyro-about-intro .pyro-cta-primary {
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.pyro-about-intro .pyro-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--violet), var(--yellow));
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.pyro-about-intro .pyro-cta-primary:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.pyro-about-intro .pyro-cta-primary:hover::before {
  left: 0;
}

.pyro-about-intro .pyro-cta-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--violet);
}

.pyro-about-intro .pyro-cta-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--violet);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}

.pyro-about-intro .pyro-cta-secondary:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.3);
}

.pyro-about-intro .pyro-cta-secondary:hover::before {
  opacity: 1;
}

/* Visual Column */
.pyro-about-intro .pyro-about-visual {
  position: relative;
  padding: 40px 0;
}

/* Image Container */
.pyro-about-intro .pyro-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pyro-about-intro .pyro-image-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  opacity: 0.1;
  z-index: 1;
  animation: imageBgFloat 6s ease-in-out infinite;
}

@keyframes imageBgFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pyro-about-intro .pyro-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 25px;

  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 3;
}

.pyro-about-intro .pyro-about-image {
  border-radius: 25px;
  z-index: 2;
  position: relative;
  max-height: 500px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.pyro-about-intro .pyro-about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(75, 0, 130, 0.3);
}

/* Image Overlay */
.pyro-about-intro .pyro-image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
}

.pyro-about-intro .pyro-overlay-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.2);
  transform: translateY(-100px);
  opacity: 0;
  animation: badgeSlideIn 1s ease-out 0.5s forwards;
}

@keyframes badgeSlideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pyro-about-intro .pyro-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
}

.pyro-about-intro .pyro-badge-content {
  display: flex;
  flex-direction: column;
}

.pyro-about-intro .pyro-badge-title {
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
}

.pyro-about-intro .pyro-badge-desc {
  font-size: 12px;
  color: rgba(11, 9, 10, 0.7);
}

/* Decorative Elements */
.pyro-about-intro .pyro-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pyro-about-intro .pyro-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  opacity: 0.1;
}

.pyro-about-intro .pyro-circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 10%;
  animation: circleFloat1 8s ease-in-out infinite;
}

.pyro-about-intro .pyro-circle-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation: circleFloat2 6s ease-in-out infinite;
}

@keyframes circleFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -10px) rotate(120deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(240deg);
  }
}

@keyframes circleFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-15px, -20px) rotate(180deg);
  }
}

.pyro-about-intro .pyro-deco-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: sparkTwinkle 4s infinite;
}

.pyro-about-intro .pyro-spark-1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.pyro-about-intro .pyro-spark-2 {
  top: 70%;
  right: 25%;
  animation-delay: 1.5s;
}

.pyro-about-intro .pyro-spark-3 {
  bottom: 35%;
  left: 65%;
  animation-delay: 3s;
}

@keyframes sparkTwinkle {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Stats Cards */
.pyro-about-intro .pyro-stats-cards {
  position: absolute;
  bottom: -30px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 5;
}

.pyro-about-intro .pyro-stat-card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
  min-width: 114px;
  animation: statsSlideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.pyro-about-intro .pyro-stat-1 {
  animation-delay: 0.8s;
}

.pyro-about-intro .pyro-stat-2 {
  animation-delay: 1s;
}

@keyframes statsSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pyro-about-intro .pyro-stat-icon {
  color: var(--violet);
  font-size: 20px;
  margin-bottom: 8px;
}

.pyro-about-intro .pyro-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.pyro-about-intro .pyro-stat-label {
  font-size: 12px;
  color: rgba(11, 9, 10, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-about-intro {
    padding: 60px 0;
  }

  .pyro-about-intro .pyro-about-content {
    padding: 20px 0;
    text-align: center;
  }

  .pyro-about-intro .pyro-about-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .pyro-about-intro .pyro-about-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .pyro-about-intro .pyro-story-points {
    margin-bottom: 30px;
  }

  .pyro-about-intro .pyro-story-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
  }

  .pyro-about-intro .pyro-story-item:hover {
    transform: none;
  }

  .pyro-about-intro .pyro-about-actions {
    flex-direction: column;
    gap: 15px;
  }

  .pyro-about-intro .pyro-about-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .pyro-about-intro .pyro-about-visual {
    padding: 30px 0;
    margin-top: 40px;
  }

  .pyro-about-intro .pyro-about-image {
    max-height: 350px;
  }

  .pyro-about-intro .pyro-stats-cards {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-about-intro .pyro-about-title {
    font-size: 3.2rem;
  }

  .pyro-about-intro .pyro-about-subtitle {
    font-size: 1.1rem;
  }

  .pyro-about-intro .pyro-about-actions {
    gap: 18px;
  }

  .pyro-about-intro .pyro-about-cta {
    padding: 15px 30px;
    font-size: 1.05rem;
  }

  .pyro-about-intro .pyro-about-image {
    max-height: 450px;
  }
}

/* brands swiper section */
/* brands swiper section */
/* Brands Section */
.pyro-brands {
  background: linear-gradient(135deg,
      var(--black) 0%,
      #1a1a2e 50%,
      var(--violet) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

/* SVG Background - Fixed z-index */
.pyro-brands .pyro-brands-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.pyro-brands .pyro-bg-svg {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* Section Header */
.pyro-brands .pyro-brands-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.pyro-brands .pyro-brands-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 10, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pyro-brands .pyro-brands-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pyro-brands .pyro-brands-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Fixed Swiper Container - No blinking */
.pyro-brands .pyro-brands-swiper {
  position: relative;
  z-index: 10;
  padding: 40px 0 80px;
  overflow: hidden;
}

.pyro-brands .swiper-wrapper {
  transition-property: transform;
  will-change: transform;
}

.pyro-brands .swiper-slide {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.4s ease;
  user-select: none;
}

.pyro-brands .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.pyro-brands .swiper-slide-next,
.pyro-brands .swiper-slide-prev {
  opacity: 0.85;
  transform: scale(0.95);
}

/* Brand Cards - Simplified */
.pyro-brands .pyro-brand-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pyro-brands .pyro-brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 214, 10, 0.2);
  border-color: rgba(255, 214, 10, 0.5);
}

/* Brand Image */
.pyro-brands .pyro-brand-image {
  transform: scale(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pyro-brands .pyro-brand-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.pyro-brands .pyro-brand-card:hover .pyro-brand-image img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Brand Content */
.pyro-brands .pyro-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.pyro-brands .pyro-brand-card:hover .pyro-brand-name {
  color: var(--yellow);
}

.pyro-brands .pyro-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  color: var(--black);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pyro-brands .pyro-brand-btn:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.3);
}

/* Navigation Buttons */
.pyro-brands .swiper-button-next,
.pyro-brands .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--yellow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 214, 10, 0.3);
  transition: all 0.3s ease;
}

.pyro-brands .swiper-button-next:hover,
.pyro-brands .swiper-button-prev:hover {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.1);
}

.pyro-brands .swiper-button-next::after,
.pyro-brands .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Pagination */
.pyro-brands .swiper-pagination {
  bottom: 20px;
}

.pyro-brands .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 214, 10, 0.5);
  opacity: 1;
}

.pyro-brands .swiper-pagination-bullet-active {
  background: var(--yellow);
  transform: scale(1.2);
}

/* Navigation Buttons */
.pyro-brands .swiper-button-next,
.pyro-brands .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--yellow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 214, 10, 0.3);
  transition: all 0.3s ease;
  position: absolute;
  /* Required for positioning */
  z-index: 10;
  /* Ensure visibility over cards */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  bottom: 10px;
}

.pyro-brands .swiper-button-prev {
  left: 20px;
}

.pyro-brands .swiper-button-next {
  right: 20px;
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-brands {
    padding: 60px 0;
  }

  .pyro-brands .pyro-brands-header {
    margin-bottom: 40px;
  }

  .pyro-brands .pyro-brands-title {
    font-size: 2.2rem;
  }

  .pyro-brands .pyro-brands-swiper {
    padding: 30px 0 60px;
  }

  .pyro-brands .pyro-brand-card {
    height: auto;
    padding: 20px;
  }

  .pyro-brands .swiper-slide {
    width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-brands .pyro-brands-title {
    font-size: 2.5rem;
  }

  .pyro-brands .pyro-brand-card {
    height: auto;
  }

  .pyro-brands .swiper-slide {
    width: 45%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .pyro-brands .swiper-slide {
    width: 30%;
  }
}

@media (min-width: 1200px) {
  .pyro-brands .swiper-slide {
    width: 25%;
  }
}

/* Why Choose Us Section */
.pyro-why-choose {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* SVG Pattern Background */
.pyro-why-choose .pyro-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.pyro-why-choose .pyro-pattern-svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

/* Section Header */
.pyro-why-choose .pyro-why-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.pyro-why-choose .pyro-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet), var(--red));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.pyro-why-choose .pyro-why-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
}

.pyro-why-choose .pyro-why-subtitle {
  font-size: 1.1rem;
  color: rgba(11, 9, 10, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main Content */
.pyro-why-choose .pyro-why-column {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

/* Why Choose Boxes */
.pyro-why-choose .pyro-why-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(75, 0, 130, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 0, 130, 0.1);
}

.pyro-why-choose .pyro-why-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 214, 10, 0.05),
      rgba(230, 57, 70, 0.05));
  opacity: 0;
  transition: all 0.3s ease;
}

.pyro-why-choose .pyro-why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.2);
  border-color: rgba(75, 0, 130, 0.3);
}

.pyro-why-choose .pyro-why-box:hover::before {
  opacity: 1;
}

/* Left Column Specific Animations */
.pyro-why-choose .pyro-box-left {
  transform: translateX(-20px);
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.pyro-why-choose .pyro-box-left:nth-child(1) {
  animation-delay: 0.2s;
}

.pyro-why-choose .pyro-box-left:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Right Column Specific Animations */
.pyro-why-choose .pyro-box-right {
  transform: translateX(20px);
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

.pyro-why-choose .pyro-box-right:nth-child(1) {
  animation-delay: 0.6s;
}

.pyro-why-choose .pyro-box-right:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Icon Styling */
.pyro-why-choose .pyro-why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.pyro-why-choose .pyro-why-box:hover .pyro-why-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.4);
}

/* Content Styling */
.pyro-why-choose .pyro-why-content {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.pyro-why-choose .pyro-why-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.pyro-why-choose .pyro-why-box:hover .pyro-why-content h4 {
  color: var(--red);
}

.pyro-why-choose .pyro-why-content p {
  font-size: 0.95rem;
  color: rgba(11, 9, 10, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Middle Image Column */
.pyro-why-choose .pyro-why-image {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.pyro-why-choose .pyro-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pyro-why-choose .pyro-main-image {
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(75, 0, 130, 0.2);
  max-height: 500px;
  object-fit: cover;
  width: 100%;
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0;
  animation: imageZoomIn 1s ease-out 0.3s forwards;
}

@keyframes imageZoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pyro-why-choose .pyro-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(75, 0, 130, 0.3);
}

/* Floating Badge on Image */
.pyro-why-choose .pyro-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: var(--white);
  padding: 15px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: badgeSlideDown 1s ease-out 0.8s forwards;
}

@keyframes badgeSlideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pyro-why-choose .pyro-badge-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.pyro-why-choose .pyro-badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Decorative Circle */
.pyro-why-choose .pyro-image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: circleRotate 20s linear infinite;
}

@keyframes circleRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pyro-why-choose {
    padding: 60px 0;
  }

  .pyro-why-choose .pyro-why-header {
    margin-bottom: 40px;
  }

  .pyro-why-choose .pyro-why-title {
    font-size: 2.2rem;
  }

  .pyro-why-choose .pyro-why-column {
    gap: 20px;
    margin-bottom: 40px;
  }

  .pyro-why-choose .pyro-why-box {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .pyro-why-choose .pyro-why-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto;
  }

  .pyro-why-choose .pyro-why-content h4 {
    font-size: 1.2rem;
  }

  .pyro-why-choose .pyro-main-image {
    max-height: 300px;
    margin-bottom: 30px;
  }

  .pyro-why-choose .pyro-image-badge {
    top: 10px;
    right: 10px;
    padding: 12px 16px;
  }

  .pyro-why-choose .pyro-badge-number {
    font-size: 1.5rem;
  }

  /* Reset animations on mobile */
  .pyro-why-choose .pyro-box-left,
  .pyro-why-choose .pyro-box-right {
    transform: none;
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pyro-why-choose .pyro-why-title {
    font-size: 2.5rem;
  }

  .pyro-why-choose .pyro-why-box {
    padding: 28px;
  }

  .pyro-why-choose .pyro-main-image {
    max-height: 100%;
    margin-bottom: 30px;
  }

  .pyro-why-choose .pyro-image-circle {
    width: 250px;
    height: 250px;
  }
}

/* about page ends */
/* safety tips */

/* Safety Tips Section Styles */
.safety-tips-section {
  background: linear-gradient(135deg,
      var(--white) 0%,
      rgba(255, 214, 10, 0.1) 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.safety-tips-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(75, 0, 130, 0.1) 0%,
      rgba(75, 0, 130, 0) 70%);
  z-index: 0;
}

.safety-tips-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(230, 57, 70, 0.1) 0%,
      rgba(230, 57, 70, 0) 70%);
  z-index: 0;
}

.safety-tips-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.safety-tips-title {
  color: var(--violet);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  display: inline-block;
}

.safety-tips-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--red));
  border-radius: 3px;
}

.safety-tips-subtitle {
  color: var(--black);
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.safety-tips-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--red));
  margin: 2rem auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.safety-tips-cards {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.safety-tip-card {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.safety-tip-card:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}

.safety-tip-card-inner {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.safety-tip-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--violet), var(--red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.safety-tip-card-inner:hover::before {
  opacity: 1;
}

.safety-tip-card-do {
  background: linear-gradient(135deg,
      rgba(75, 0, 130, 0.05) 0%,
      rgba(255, 255, 255, 0.9) 100%);
  border-left: 4px solid var(--violet);
}

.safety-tip-card-dont {
  background: linear-gradient(135deg,
      rgba(230, 57, 70, 0.05) 0%,
      rgba(255, 255, 255, 0.9) 100%);
  border-left: 4px solid var(--red);
}

.safety-tip-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.safety-tip-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  margin-right: 16px;
}

.safety-tip-card-do .safety-tip-icon-wrapper {
  background: linear-gradient(135deg, #60846e, #67fb02);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(75, 0, 130, 0.3);
}

.safety-tip-card-dont .safety-tip-icon-wrapper {
  background: linear-gradient(135deg, var(--red), #ff5252);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.safety-tip-icon-wrapper i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.safety-tip-card-inner:hover .safety-tip-icon-wrapper i {
  transform: scale(1.1);
}

.safety-tip-title {
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.safety-tip-card-dont .safety-tip-title {
  color: var(--red);
}

.safety-tip-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.safety-tip-card-inner:hover .safety-tip-title::after {
  width: 100%;
}

.safety-tip-text {
  color: var(--black);
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 1rem;
}

.safety-tips-cta {
  background: linear-gradient(135deg,
      var(--yellow) 0%,
      rgba(255, 214, 10, 0.8) 100%);
  border-radius: 12px;
  padding: 2.5rem !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.safety-tips-cta::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.safety-tips-cta h4 {
  color: var(--black);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.safety-tips-explore-btn {
  background: linear-gradient(135deg, var(--violet) 0%, #6a0dad 100%);
  color: var(--white);
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
  border: none;
  display: inline-block;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.safety-tips-explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.safety-tips-explore-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(75, 0, 130, 0.4);
}

.safety-tips-explore-btn:hover::before {
  opacity: 1;
}

.footer-contact .location i {
  margin-top: -39px !important;
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .safety-tips-title {
    font-size: 2rem;
  }

  .safety-tips-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .safety-tip-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .safety-tip-icon-wrapper i {
    font-size: 20px;
  }

  .safety-tip-title {
    font-size: 1.2rem;
  }

  .safety-tip-text {
    font-size: 0.95rem;
  }

  .safety-tips-cta {
    padding: 2rem 1.5rem !important;
  }

  .safety-tips-cta h4 {
    font-size: 1.5rem;
  }

  .safety-tips-explore-btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .safety-tips-title {
    font-size: 2.2rem;
  }

  .safety-tip-icon-wrapper i {
    font-size: 25px;
  }

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

  .safety-tip-title {
    font-size: 1.3rem;
  }

  .safety-tip-text {
    font-size: 0.98rem;
  }

  .safety-tips-cta h4 {
    font-size: 1.6rem;
  }

  .safety-tips-explore-btn {
    font-size: 1.05rem;
    padding: 0.85rem 2.2rem;
  }
}

/* contact page */
/* Contact Hub Section Styles */
.contact-hub {
  background: linear-gradient(135deg,
      rgba(241, 250, 238, 0.9) 0%,
      rgba(255, 214, 10, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.contact-hub::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(75, 0, 130, 0.1) 0%,
      rgba(75, 0, 130, 0) 70%);
  z-index: 0;
}

.contact-hub::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(230, 57, 70, 0.1) 0%,
      rgba(230, 57, 70, 0) 70%);
  z-index: 0;
}

.contact-hub-header {
  position: relative;
  z-index: 1;
}

.contact-hub-pre-title {
  color: var(--violet);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.contact-hub-title {
  color: var(--black);
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.contact-hub-title-highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.contact-hub-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 214, 10, 0.4);
  border-radius: 4px;
  z-index: -1;
}

.contact-hub-subtitle {
  color: var(--black);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease 0.4s forwards;
}

/* Contact Cards Styles */
.contact-hub-cards-container {
  position: relative;
  z-index: 1;
}

.contact-hub-card {
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.contact-hub-card:nth-child(1) {
  animation-delay: 0.1s;
  background: linear-gradient(135deg,
      rgba(75, 0, 130, 0.05) 0%,
      rgba(255, 255, 255, 0.9) 100%);
}

.contact-hub-card:nth-child(2) {
  animation-delay: 0.2s;
  background: linear-gradient(135deg,
      rgba(230, 57, 70, 0.05) 0%,
      rgba(255, 255, 255, 0.9) 100%);
}

.contact-hub-card:nth-child(3) {
  animation-delay: 0.3s;
  background: linear-gradient(135deg,
      rgba(255, 214, 10, 0.1) 0%,
      rgba(255, 255, 255, 0.9) 100%);
}

.contact-hub-card:nth-child(4) {
  animation-delay: 0.4s;
  background: linear-gradient(135deg,
      rgba(11, 9, 10, 0.05) 0%,
      rgba(255, 255, 255, 0.9) 100%);
}

.contact-hub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--violet), var(--red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-hub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-hub-card:hover::before {
  opacity: 1;
}

.contact-hub-card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.contact-hub-location-card .contact-hub-card-icon-wrapper {
  background: linear-gradient(135deg, var(--violet), #6a0dad);
  color: var(--white);
}

.contact-hub-phone-card .contact-hub-card-icon-wrapper {
  background: linear-gradient(135deg, var(--red), #ff5252);
  color: var(--white);
}

.contact-hub-email-card .contact-hub-card-icon-wrapper {
  background: linear-gradient(135deg, var(--yellow), #ffcc00);
  color: var(--black);
}

.contact-hub-hours-card .contact-hub-card-icon-wrapper {
  background: linear-gradient(135deg, #02794c, #007745);
  color: var(--white);
}

.contact-hub-card-icon-wrapper i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.contact-hub-card:hover .contact-hub-card-icon-wrapper i {
  transform: scale(1.1);
}

.contact-hub-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

.contact-hub-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hub-card-line {
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-hub-card-line:last-child {
  margin-bottom: 0;
}

.contact-hub-card-line a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.contact-hub-card-line a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

.contact-hub-card:hover .contact-hub-card-line a::after {
  width: 100%;
}

.contact-hub-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Map Section Styles */
.contact-hub-map-section {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 0.6s forwards;
}

.contact-hub-map-wrapper {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.contact-hub-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA Button Styles */
.contact-hub-cta-container {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.contact-hub-btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet) 0%, #6a0dad 100%);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(75, 0, 130, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.contact-hub-btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
  z-index: -1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(100%);
}

.contact-hub-btn-cta:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(75, 0, 130, 0.4);
}

.contact-hub-btn-cta:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .contact-hub-title {
    font-size: 2.2rem;
  }

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

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

  .contact-hub-card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .contact-hub-card-icon-wrapper i {
    font-size: 1.8rem;
  }

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

  .contact-hub-card-line {
    font-size: 0.9rem;
  }

  .contact-hub-map-wrapper {
    height: 300px;
    clip-path: none;
  }

  .contact-hub-btn-cta {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-hub-title {
    font-size: 2.5rem;
  }

  .contact-hub-subtitle {
    font-size: 1.1rem;
  }

  .contact-hub-card {
    padding: 1.8rem;
  }

  .contact-hub-card-icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .contact-hub-card-icon-wrapper i {
    font-size: 1.9rem;
  }

  .contact-hub-card-title {
    font-size: 1.3rem;
  }

  .contact-hub-card-line {
    font-size: 0.95rem;
  }

  .contact-hub-map-wrapper {
    height: 350px;
  }

  .contact-hub-btn-cta {
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
  }
}

/* FOOTER STYLES */
.site-footer {
  background-color: #090040ef;
  background-image: url("../images/footer-bg.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-attachment: fixed;
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color3), var(--color4));
}

.footer-col {
  margin-bottom: 40px;
}

.footer-heading {
  color: var(--color4);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-weight: bold !important;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color3);
}

/* About Column */
.footer-about .footer-logo {
  margin-bottom: 20px;
}

/* .footer-about .footer-logo img {
  max-height: 60px;
} */

.footer-about .footer-description {
  line-height: 1.6;
  opacity: 0.8;
}

/* Links Columns */
.footer-links .footer-nav,
.footer-products .footer-nav {
  list-style: none;
  padding: 0;
}

.footer-links .footer-nav li,
.footer-products .footer-nav li {
  margin-bottom: 12px;
}

.footer-links .footer-nav a,
.footer-products .footer-nav a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links .footer-nav a:hover,
.footer-products .footer-nav a:hover {
  color: var(--color4);
  opacity: 1;
  padding-left: 5px;
}

.footer-links .footer-nav i,
.footer-products .footer-nav i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--color3);
}

/* Contact Column */
.footer-contact .footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact .footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact .footer-contact-info i {
  color: var(--color3);
  margin-right: 15px;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact .footer-contact-info span {
  line-height: 1.5;
  opacity: 0.8;
}

.footer-contact .footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact .footer-contact-info a:hover {
  color: var(--color4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-copyright {
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

/* utility classes */
.text-purple {
  color: var(--color2);
}

.bg-purple {
  background-color: var(--color2);
}

/* custom animation for wow */
.wow-rotate {
  opacity: 0;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation-name: wow-rotate-in;
  animation-duration: 1.2s;
  animation-fill-mode: both;
  perspective: 800px;
}

@keyframes wow-rotate-in {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateY(-90deg) scale(0.8);
  }

  60% {
    opacity: 0.7;
    transform: perspective(800px) rotateY(15deg) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1);
  }
}

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

/* mobile media queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }

  .notfound .notfound-404 {
    height: 142px;
  }
}

/* tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .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);
}