@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
  --color-1: #483d8b;
  --color-2: #fb9901;
  --color-3: #bb2525;
  --color-4: #b7d008;
}
a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.heading1 {
  font-size: 2.5rem;
}
.heading2 {
  font-size: 2rem;
}
.heading3 {
  font-size: 1.75rem;
}
.heading4 {
  font-size: 1.5rem;
}
.heading5 {
  font-size: 1.25rem;
}
.heading6 {
  font-size: 1rem;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
  font-family: Arial, sans-serif !important;
}
p,
a,
li,
span,
body {
  font-weight: normal !important;
  font-family: Helvetica, sans-serif !important;
}
/* custom css starts */
/* Announcement Topbar */
.header-section .sparkle-header-topbar {
  background: linear-gradient(135deg, var(--color-3), #fb013c);
  color: #f1f2f3;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
  height: 45px;
  display: flex;
  align-items: center;
}

.header-section .announcement-text {
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* ---------- main-nav ---------- */
.header-section .main-nav {
  background: linear-gradient(180deg, #111 0%, #222 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
}
.header-section .main-nav .navbar-brand {
  width: 99px;
}

.header-section .main-nav .logo {
  transition: transform 0.3s ease;
}

.header-section .main-nav .logo:hover {
  transform: scale(1.05);
  animation: glow-icon 0.6s ease-in-out;
}

.header-section .main-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin-left: 1.2rem;
  padding: 0.75rem 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.header-section .main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.header-section .main-nav .nav-link:hover {
  color: var(--yellow);
  animation: glow-text 0.6s ease-in-out;
}

@keyframes glow-text {
  0% {
    text-shadow: 0 0 0px var(--yellow);
  }
  50% {
    text-shadow: 0 0 8px var(--yellow), 0 0 16px var(--yellow);
  }
  100% {
    text-shadow: 0 0 0px var(--yellow);
  }
}
@keyframes glow-icon {
  0% {
    box-shadow: 0 0 0px var(--yellow);
  }
  50% {
    box-shadow: 0 0 8px var(--yellow), 0 0 16px var(--yellow);
  }
  100% {
    box-shadow: 0 0 0px var(--yellow);
  }
}

/* ---------- responsive ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-section .contact-bar {
    font-size: 0.8rem;
  }

  .header-section .main-nav .nav-link {
    margin-left: 0.9rem;
    font-size: 0.95rem;
  }
  .header-section .navbar-nav {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1px) and (max-width: 767.98px) {
  .header-section .main-nav .logo {
    height: 50px;
  }

  .header-section .main-nav .nav-link {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  .header-section .navbar-nav {
    display: flex;
    align-items: center;
  }
}
/* carousel */
/* Single Image Carousel Styles */
.single-image-carousel .carousel {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.single-image-carousel .carousel-image {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.single-image-carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-2);
  opacity: 0.7;
}

.single-image-carousel .carousel-indicators .active {
  background-color: var(--color-1);
  opacity: 1;
}

.single-image-carousel .carousel-control-prev,
.single-image-carousel .carousel-control-next {
  width: 8%;
  transition: background-color 0.3s;
}

.single-image-carousel .carousel-caption {
  background-color: rgba(72, 61, 139, 0.7);
  border-radius: 5px;
  padding: 20px;
  right: 10%;
  left: 10%;
  bottom: 20%;
}

/* Tablet (md) breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .single-image-carousel .carousel-image {
    height: 100%;
  }

  .single-image-carousel .carousel-caption {
    bottom: 15%;
    padding: 15px;
  }
}

/* Mobile breakpoint */
@media (min-width: 1px) and (max-width: 767.98px) {
  .single-image-carousel .carousel-image {
    height: 100%;
  }

  .single-image-carousel .carousel-indicators {
    bottom: 10px;
  }

  .single-image-carousel .carousel-control-prev,
  .single-image-carousel .carousel-control-next {
    width: 15%;
  }

  .single-image-carousel .carousel-caption {
    display: none;
  }
  .single-image-carousel .carousel {
    margin-bottom: 0;
  }
}
/* index welcome section */
/* Hero Welcome Section Styles */
.hero-welcome-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-welcome-section .hero-text-col {
  padding: 40px;
}

.hero-welcome-section .hero-intro-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(187, 37, 37, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
}

.hero-welcome-section .hero-badge-icon {
  color: var(--color-1);
  margin-right: 10px;
  font-size: 1.2rem;
}

.hero-welcome-section .hero-badge-text {
  font-weight: 600;
  color: var(--color-1);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hero-welcome-section .hero-headline {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c3e50;
}

.hero-welcome-section .hero-highlight {
  color: orangered;
  position: relative;
  display: inline-block;
}

.hero-welcome-section .hero-highlight:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(198, 207, 19, 0.3);
  z-index: -1;
}

.hero-welcome-section .hero-support-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.6;
  max-width: 90%;
}

.hero-welcome-section .hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.hero-welcome-section .hero-benefit-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.hero-welcome-section .benefit-icon {
  color: var(--color-1);
  margin-right: 10px;
  font-size: 1.2rem;
}

.hero-welcome-section .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.hero-welcome-section .hero-cta-primary {
  background-color: var(--color-1);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-1);
}

.hero-welcome-section .hero-cta-primary:hover {
  background-color: transparent;
  color: var(--color-1);
  transform: translateY(-3px);
}

.hero-welcome-section .hero-cta-outline {
  background-color: transparent;
  color: var(--color-3);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--color-3);
  transition: all 0.3s ease;
}

.hero-welcome-section .hero-cta-outline:hover {
  background-color: var(--color-3);
  color: white;
  transform: translateY(-3px);
}

.hero-welcome-section .hero-visual-col {
  position: relative;
  padding: 40px;
}

.hero-welcome-section .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-welcome-section .hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-welcome-section .hero-image-wrapper:hover .hero-main-image {
  transform: scale(1.03);
}

.hero-welcome-section .hero-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-welcome-section .decor-element {
  position: absolute;
  color: var(--color-2);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: float 6s infinite ease-in-out;
}

.hero-welcome-section .decor-sparkle {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-welcome-section .decor-flare {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.hero-welcome-section .decor-burst {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
  color: var(--color-1);
}

.hero-welcome-section .hero-trust-badge {
  position: absolute;
  bottom: 20px;
  right: 244px;
  background: rgb(255, 255, 255);
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-welcome-section .trust-badge-content i {
  color: var(--color-1);
  margin-right: 8px;
  font-size: 1.2rem;
}

.hero-welcome-section .trust-badge-content span {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-welcome-section .hero-wave-divider {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 80px;
}

.hero-welcome-section .hero-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.hero-welcome-section .hero-wave-divider path {
  transition: all 0.3s ease;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Tablet (md) breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-welcome-section {
    padding: 60px 0 0;
  }

  .hero-welcome-section .hero-headline {
    font-size: 2.2rem;
  }

  .hero-welcome-section .hero-support-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-welcome-section .hero-text-col,
  .hero-welcome-section .hero-visual-col {
    padding: 30px;
  }

  .hero-welcome-section .hero-cta-group {
    margin-top: 20px;
  }
}

/* Mobile breakpoint */
@media (min-width: 1px) and (max-width: 767.98px) {
  .hero-welcome-section .hero-text-col {
    order: 2;
    padding: 20px;
  }
  .hero-welcome-section .hero-trust-badge {
    display: none;
    right: 205px;
  }

  .hero-welcome-section .hero-visual-col {
    order: 1;
    padding: 20px;
  }

  .hero-welcome-section .hero-headline {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-welcome-section .hero-support-text {
    font-size: 0.95rem;
  }

  .hero-welcome-section .hero-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-welcome-section .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .hero-welcome-section .hero-wave-divider {
    margin-top: 50px;
  }
}
/* products swiper */
/* Products Swiper Section Styles */
/* Fireworks Showcase Section Styles */
.fireworks-showcase {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--color-3) 100%);
  overflow: hidden;
}

.fireworks-showcase .section-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-1);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(187, 37, 37, 0.3);
}

.fireworks-showcase .section-badge-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.fireworks-showcase .showcase-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-2);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fireworks-showcase .heading-highlight {
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.fireworks-showcase .heading-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(198, 207, 19, 0.3);
  z-index: -1;
}

.fireworks-showcase .showcase-description {
  font-size: 1.1rem;
  color: #a1b2c3;
  max-width: 800px;
  margin: 0 auto;
}

/* Swiper Styles */
.fireworks-showcase .swiper-container {
  padding: 20px 0 40px;
}

.fireworks-showcase .firework-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.fireworks-showcase .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fireworks-showcase .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.fireworks-showcase .firework-card:hover .card-image img {
  transform: scale(1.05);
}

.fireworks-showcase .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.fireworks-showcase .firework-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.fireworks-showcase .firework-rating {
  color: #ffc107;
}

.fireworks-showcase .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fireworks-showcase .firework-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.fireworks-showcase .feature-tag {
  display: inline-block;
  background-color: rgba(72, 61, 139, 0.1);
  color: var(--color-3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fireworks-showcase .firework-details {
  margin-bottom: 15px;
  flex-grow: 1;
}

.fireworks-showcase .firework-details p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.fireworks-showcase .price-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fireworks-showcase .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-1);
}

.fireworks-showcase .discount {
  background-color: var(--color-2);
  color: var(--color-3);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.fireworks-showcase .firework-btn {
  background-color: var(--color-1);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fireworks-showcase .firework-btn:hover {
  background-color: #9a1f1f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(187, 37, 37, 0.3);
}

.fireworks-showcase .swiper-button-prev,
.fireworks-showcase .swiper-button-next {
  color: var(--color-1);
  background-color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fireworks-showcase .swiper-button-prev::after,
.fireworks-showcase .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.fireworks-showcase .swiper-pagination-bullet-active {
  background-color: var(--color-1);
}

/* CTA Section */
.fireworks-showcase .showcase-cta {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.fireworks-showcase .cta-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 15px;
}

.fireworks-showcase .cta-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.fireworks-showcase .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.fireworks-showcase .cta-btn-primary {
  background-color: var(--color-1);
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fireworks-showcase .cta-btn-primary:hover {
  background-color: #9a1f1f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(187, 37, 37, 0.3);
}

.fireworks-showcase .cta-btn-secondary {
  background-color: transparent;
  color: var(--color-3);
  border: 2px solid var(--color-3);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fireworks-showcase .cta-btn-secondary:hover {
  background-color: var(--color-3);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(72, 61, 139, 0.3);
}

/* Background Elements */
.fireworks-showcase .bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.fireworks-showcase .bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.fireworks-showcase .bg-element-1 {
  width: 100px;
  height: 100px;
  background-color: var(--color-1);
  top: 10%;
  left: 5%;
  animation: float 15s infinite ease-in-out;
}

.fireworks-showcase .bg-element-2 {
  width: 80px;
  height: 80px;
  background-color: var(--color-2);
  top: 70%;
  left: 8%;
  animation: float 18s infinite ease-in-out;
}

.fireworks-showcase .bg-element-3 {
  width: 120px;
  height: 120px;
  background-color: var(--color-3);
  top: 20%;
  right: 7%;
  animation: float 20s infinite ease-in-out;
}

.fireworks-showcase .bg-element-4 {
  width: 60px;
  height: 60px;
  background-color: var(--color-1);
  top: 60%;
  right: 10%;
  animation: float 16s infinite ease-in-out;
}

.fireworks-showcase .bg-element-5 {
  width: 90px;
  height: 90px;
  background-color: var(--color-2);
  top: 40%;
  right: 15%;
  animation: float 22s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Media Queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .fireworks-showcase .showcase-heading {
    font-size: 2rem;
  }

  .fireworks-showcase .card-image {
    height: 180px;
  }

  .fireworks-showcase .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .fireworks-showcase .cta-btn-primary,
  .fireworks-showcase .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .fireworks-showcase .bg-element {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fireworks-showcase .showcase-heading {
    font-size: 2.4rem;
  }

  .fireworks-showcase .card-image {
    height: 200px;
  }
}
/* Counter Section Styles */
.counter-section {
  position: relative;
  overflow: hidden;
}
.counter-section .counter-wrapper {
  clip-path: polygon(
    0% 15%,
    15% 15%,
    15% 0%,
    85% 0%,
    85% 15%,
    100% 15%,
    100% 85%,
    85% 85%,
    85% 100%,
    15% 100%,
    15% 85%,
    0% 85%
  );
}

.counter-small-heading {
  font-size: 1.1rem;
  color: var(--color-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.counter-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.counter-main-heading .heading-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-1);
  border-radius: 2px;
}

.counter-item {
  padding: 30px 15px;
  margin-bottom: 20px;
}

.counter-icon i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.odometer {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-3);
  line-height: 1;
  font-family: "Arial", sans-serif;
}

.counter-title {
  font-size: 1.1rem;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tablet (md) breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .counter-main-heading {
    font-size: 2.2rem;
  }

  .odometer {
    font-size: 2.5rem;
  }

  .counter-title {
    font-size: 1rem;
  }
}

/* Mobile breakpoint */
@media (min-width: 1px) and (max-width: 767.98px) {
  .counter-main-heading {
    font-size: 1.8rem;
  }

  .counter-item {
    padding: 20px 10px;
  }

  .odometer {
    font-size: 2rem;
  }

  .counter-title {
    font-size: 0.9rem;
  }
}
/* index parallax */
/* Parallax Section Styles */
.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* Creates new stacking context */
  background-image: url("../images/parallax.webp");
  background-position: 50% center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Creates parallax effect */
}

.parallax-section .parallax-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7); /* Overlay color using your --color-3 */
  color: white;
  padding: 80px 0;
}

.parallax-section .parallax-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(187, 37, 37, 0.8); /* Using your --color-1 */
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.parallax-section .parallax-badge-icon {
  color: var(--color-2);
  margin-right: 10px;
  font-size: 1.2rem;
}

.parallax-section .parallax-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-section .text-highlight {
  color: var(--color-2);
  position: relative;
}

.parallax-section .parallax-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.parallax-section .parallax-btn {
  background-color: var(--color-1);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--color-1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.parallax-section .parallax-btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tablet (md) breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .parallax-section {
    height: 450px;
  }

  .parallax-section .parallax-heading {
    font-size: 2.3rem;
  }

  .parallax-section .parallax-description {
    font-size: 1.1rem;
  }
}

/* Mobile breakpoint */
@media (min-width: 1px) and (max-width: 767.98px) {
  .parallax-section {
    height: 400px;
    background-attachment: scroll !important; /* Disable parallax on mobile */
  }

  .parallax-section .parallax-background {
    background-attachment: scroll !important;
  }

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

  .parallax-section .parallax-heading {
    font-size: 1.8rem;
  }

  .parallax-section .parallax-description {
    font-size: 1rem;
  }

  .parallax-section .parallax-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* CTA Section Styles */
.cta-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden !important;
}

.cta-section .cta-content {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta-section .cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 15px;
}

.cta-section .cta-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Multi-layered Button Styles */
.cta-section .cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  width: 220px;
  height: 60px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-section .cta-btn:hover {
  transform: translateY(-5px);
}

.cta-section .btn-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

.cta-section .btn-layer-front {
  z-index: 2;
}

.cta-section .btn-layer-back {
  z-index: 1;
  transform: rotateY(180deg);
}

.cta-section .btn-icon {
  font-size: 1.4rem;
  margin-right: 10px;
}

.cta-section .btn-text {
  font-weight: 600;
  font-size: 1rem;
}

/* Primary Button Styles */
.cta-section .cta-btn-primary .btn-layer-front {
  background-color: var(--color-1);
  color: white;
  box-shadow: 0 4px 15px rgba(187, 37, 37, 0.3);
}

.cta-section .cta-btn-primary .btn-layer-back {
  background-color: #9a1f1f;
  color: white;
  box-shadow: 0 6px 20px rgba(187, 37, 37, 0.4);
}

.cta-section .cta-btn-primary:hover .btn-layer-front {
  transform: rotateY(180deg);
}

.cta-section .cta-btn-primary:hover .btn-layer-back {
  transform: rotateY(0deg);
}

/* Secondary Button Styles */
.cta-section .cta-btn-secondary .btn-layer-front {
  background-color: transparent;
  color: var(--color-3);
  border: 2px solid var(--color-3);
  box-shadow: 0 4px 15px rgba(72, 61, 139, 0.1);
}

.cta-section .cta-btn-secondary .btn-layer-back {
  background-color: var(--color-3);
  color: white;
  box-shadow: 0 6px 20px rgba(72, 61, 139, 0.3);
}

.cta-section .cta-btn-secondary:hover .btn-layer-front {
  transform: rotateY(180deg);
}

.cta-section .cta-btn-secondary:hover .btn-layer-back {
  transform: rotateY(0deg);
}

/* Decorative Elements */
.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(198, 207, 19, 0.1);
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(187, 37, 37, 0.08);
  z-index: 0;
}

/* Media Queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .cta-section .cta-heading {
    font-size: 1.8rem;
  }

  .cta-section .cta-description {
    font-size: 1rem;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cta-section .cta-heading {
    font-size: 2rem;
  }

  .cta-section .cta-description {
    font-size: 1.05rem;
  }
}
/* index page ends */
/* about page starts */
/* About Intro Section Styles */
.about-intro-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-intro-section .section-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-1);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(187, 37, 37, 0.3);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.about-intro-section .section-badge-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.about-intro-section .about-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-3);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-intro-section .heading-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.about-intro-section .heading-line:nth-child(1) {
  animation-delay: 0.2s;
}

.about-intro-section .heading-line:nth-child(2) {
  animation-delay: 0.4s;
}

.about-intro-section .heading-highlight {
  color: var(--color-1);
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards, highlightPulse 3s infinite ease;
  animation-delay: 0.6s;
}

.about-intro-section .heading-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(198, 207, 19, 0.3);
  z-index: -1;
}

.about-intro-section .about-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

/* Key Features */
.about-intro-section .key-features {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.about-intro-section .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-intro-section .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-2);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.about-intro-section .feature-item:hover {
  background-color: rgba(72, 61, 139, 0.05);
  transform: translateX(10px);
}

.about-intro-section .feature-item:hover::before {
  transform: scaleY(1);
}

.about-intro-section .feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(72, 61, 139, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-intro-section .feature-item:hover .feature-icon-wrapper {
  background-color: var(--color-2);
  transform: rotate(15deg);
}

.about-intro-section .feature-icon {
  font-size: 1.5rem;
  color: var(--color-3);
  transition: all 0.3s ease;
}

.about-intro-section .feature-item:hover .feature-icon {
  color: white;
}

.about-intro-section .feature-content {
  flex-grow: 1;
}

.about-intro-section .feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 5px;
}

.about-intro-section .feature-text {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* CTA Button */
.about-intro-section .about-cta {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.about-intro-section .cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  width: 220px;
  height: 60px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-intro-section .cta-btn:hover {
  transform: translateY(-5px);
}

.about-intro-section .btn-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

.about-intro-section .btn-layer-front {
  z-index: 2;
  background-color: var(--color-1);
  color: white;
  box-shadow: 0 4px 15px rgba(187, 37, 37, 0.3);
}

.about-intro-section .btn-layer-back {
  z-index: 1;
  background-color: #9a1f1f;
  color: white;
  box-shadow: 0 6px 20px rgba(187, 37, 37, 0.4);
  transform: rotateY(180deg);
}

.about-intro-section .btn-icon {
  font-size: 1.4rem;
  margin-right: 10px;
}

.about-intro-section .btn-text {
  font-weight: 600;
  font-size: 1rem;
}

.about-intro-section .cta-btn:hover .btn-layer-front {
  transform: rotateY(180deg);
}

.about-intro-section .cta-btn:hover .btn-layer-back {
  transform: rotateY(0deg);
}

/* Visual Elements */
.about-intro-section .about-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-section .visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.about-intro-section .image-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  animation: float 6s infinite ease-in-out;
}

.about-intro-section .showcase-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-intro-section .image-frame:hover .showcase-image {
  transform: scale(1.05);
}

.about-intro-section .floating-card {
  position: absolute;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.about-intro-section .floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-intro-section .card-1 {
  top: 20px;
  right: -30px;
  animation: float 8s infinite ease-in-out;
  animation-delay: 0.5s;
}

.about-intro-section .card-2 {
  bottom: 30px;
  right: 20px;
  animation: float 7s infinite ease-in-out;
  animation-delay: 1s;
}

.about-intro-section .card-3 {
  bottom: 60px;
  left: -20px;
  animation: float 9s infinite ease-in-out;
  animation-delay: 1.5s;
}

.about-intro-section .card-content {
  display: flex;
  align-items: center;
}

.about-intro-section .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(72, 61, 139, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--color-3);
}

.about-intro-section .card-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin: 0;
}

.about-intro-section .card-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Background Animation */
.about-intro-section .bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-intro-section .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.about-intro-section .shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color-1);
  top: 10%;
  left: 5%;
  animation: float 15s infinite ease-in-out;
}

.about-intro-section .shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color-2);
  top: 60%;
  left: 8%;
  animation: float 18s infinite ease-in-out;
}

.about-intro-section .shape-3 {
  width: 250px;
  height: 250px;
  background-color: var(--color-3);
  top: 20%;
  right: 7%;
  animation: float 20s infinite ease-in-out;
}

.about-intro-section .shape-4 {
  width: 180px;
  height: 180px;
  background-color: var(--color-1);
  top: 70%;
  right: 10%;
  animation: float 16s infinite ease-in-out;
}

.about-intro-section .bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-intro-section .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 10s infinite ease-in-out;
}

.about-intro-section .particle-1 {
  background-color: var(--color-1);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.about-intro-section .particle-2 {
  background-color: var(--color-2);
  top: 40%;
  left: 30%;
  animation-delay: 2s;
}

.about-intro-section .particle-3 {
  background-color: var(--color-3);
  top: 60%;
  left: 70%;
  animation-delay: 4s;
}

.about-intro-section .particle-4 {
  background-color: var(--color-1);
  top: 30%;
  left: 85%;
  animation-delay: 6s;
}

.about-intro-section .particle-5 {
  background-color: var(--color-2);
  top: 80%;
  left: 50%;
  animation-delay: 8s;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

/* Media Queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .about-intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-intro-section .about-heading {
    font-size: 2.2rem;
  }

  .about-intro-section .visual-container {
    max-width: 100%;
  }

  .about-intro-section .floating-card {
    position: relative;
    margin: 20px auto;
    max-width: 280px;
  }

  .about-intro-section .card-1,
  .about-intro-section .card-2,
  .about-intro-section .card-3 {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .about-intro-section .bg-shape {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-intro-section .about-heading {
    font-size: 2.5rem;
  }

  .about-intro-section .visual-container {
    max-width: 400px;
  }

  .about-intro-section .floating-card {
    transform: scale(0.9);
  }
}
/* about brands */
/* Brands Section Styles */
.brands-section {
  position: relative;
  background-color: #121212;
  overflow: hidden;
}

.brands-section .section-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-1);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(187, 37, 37, 0.3);
}

.brands-section .section-badge-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.brands-section .brands-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 1.5rem;
}

.brands-section .heading-highlight {
  color: var(--color-1);
  position: relative;
  display: inline-block;
}

.brands-section .heading-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(198, 207, 19, 0.3);
  z-index: -1;
}
/* Add bounce/spring easing for slide transitions */
.brands-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brands-section .brands-description {
  font-size: 1.1rem;
  color: #f5f5f5;
  max-width: 800px;
  margin: 0 auto;
}

/* Swiper Styles */
.brands-section .swiper-container {
  padding: 20px 0 40px;
}

.brands-section .brand-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
}

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

.brands-section .brand-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.brands-section .brand-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s;
}

.brands-section .brand-card:hover .brand-image {
  transform: scale(1.05);
}

.brands-section .brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.8)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brands-section .brand-card:hover .brand-overlay {
  opacity: 1;
}

.brands-section .brand-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.brands-section .brand-card:hover .brand-content {
  transform: translateY(0);
}

.brands-section .brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.brands-section .brand-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.brands-section .swiper-button-prev,
.brands-section .swiper-button-next {
  color: var(--color-1);
  background-color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brands-section .swiper-button-prev::after,
.brands-section .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.brands-section .swiper-pagination-bullet-active {
  background-color: var(--color-1);
}

/* Media Queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .brands-section .brands-heading {
    font-size: 2rem;
  }

  .brands-section .brand-image-wrapper {
    height: 180px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .brands-section .brands-heading {
    font-size: 2.2rem;
  }

  .brands-section .brand-image-wrapper {
    height: 200px;
  }
}
/* why choose us */
/* Why Choose Us Section */
.why-choose-section {
  --sphere-size: 300px;
  --highlight-color: var(--color-1);
  --text-color: #2c3e50;
  --muted-color: #6c757d;
}

/* Floating Background Spheres */
.floating-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(187, 37, 37, 0.1) 0%,
    rgba(187, 37, 37, 0) 70%
  );
  z-index: 0;
}

.floating-sphere.sphere-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: float 15s ease-in-out infinite;
}

.floating-sphere.sphere-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
  animation: float 18s ease-in-out infinite reverse;
}

.floating-sphere.sphere-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  left: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

/* Section Header */
.section-subheading {
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--muted-color);
  font-weight: 600;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.section-heading .text-highlight {
  color: var(--highlight-color);
  position: relative;
}

.section-heading .heading-underline {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--highlight-color);
  opacity: 0.3;
  z-index: -1;
  transform-origin: left;
  animation: underlineGrow 1.5s ease-out forwards;
}

.section-description {
  font-size: 1.1rem;
  color: var(--muted-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Spherical Cards */
.sphere-cards-container {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.sphere-card-wrapper {
margin-bottom:30px;
}

.sphere-card {
  border-radius: 10px;
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
}

.sphere-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color-1), var(--color-2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sphere-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sphere-card:hover::before {
  opacity: 1;
  animation: sphereGlow 2s ease-in-out infinite;
}

.sphere-content {
  text-align: center;
  padding: 20px;
  transform: translateZ(20px);
}

.sphere-icon {
  font-size: 2rem;
  color: var(--highlight-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.sphere-card:hover .sphere-icon {
  transform: scale(1.2) rotateY(360deg);
  color: var(--color-3);
}

.sphere-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 8px;
}

.sphere-text {
  font-size: 0.8rem;
  color: #000;
  line-height: 1.4;
}

/* Explode Button */
.explode-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--color-1), var(--color-3));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(187, 37, 37, 0.3);
}

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

.explode-btn-icon {
  position: relative;
  margin-left: 10px;
  z-index: 2;
  transition: all 0.3s ease;
}

.explode-btn-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.explode-btn-particles .particle {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
}

.explode-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(187, 37, 37, 0.4);
  color: white;
}

.explode-btn:hover .explode-btn-text {
  transform: translateX(5px);
}

.explode-btn:hover .explode-btn-icon {
  transform: rotate(45deg) scale(1.2);
}

.explode-btn:hover .explode-btn-particles .particle {
  animation: explode 0.6s ease-out forwards;
}

/* Keyframe Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes underlineGrow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes sphereGlow {
  0%,
  100% {
    filter: blur(5px);
    opacity: 0.7;
  }
  50% {
    filter: blur(10px);
    opacity: 0.4;
  }
}

@keyframes explode {
  0% {
    transform: translate(0, 0);
    opacity: 0;
    width: 2px;
    height: 2px;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty));
    opacity: 0;
    width: 6px;
    height: 6px;
  }
}

/* Generate random particle positions */
.explode-btn-particles .particle:nth-child(1) {
  --tx: -10px;
  --ty: -15px;
  top: 30%;
  left: 20%;
  animation-delay: 0.1s;
}

.explode-btn-particles .particle:nth-child(2) {
  --tx: 15px;
  --ty: -10px;
  top: 20%;
  left: 60%;
  animation-delay: 0.2s;
}

.explode-btn-particles .particle:nth-child(3) {
  --tx: -5px;
  --ty: 20px;
  top: 70%;
  left: 30%;
  animation-delay: 0.3s;
}

.explode-btn-particles .particle:nth-child(4) {
  --tx: 10px;
  --ty: 10px;
  top: 60%;
  left: 70%;
  animation-delay: 0.4s;
}

.explode-btn-particles .particle:nth-child(5) {
  --tx: -15px;
  --ty: 5px;
  top: 40%;
  left: 40%;
  animation-delay: 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .why-choose-section {
    --sphere-size: 350px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .sphere-title {
    font-size: 0.9rem;
  }

  .sphere-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .why-choose-section {
    --sphere-size: 350px;
  }

  .sphere-card-wrapper {
    padding: 15px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .explode-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .why-choose-section {
    --sphere-size: 315px;
  }

  .sphere-card-wrapper {
    padding: 10px;
  }

  .sphere-content {
    padding: 15px;
  }

  .sphere-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
/* about page ends */
/* Hero Section */
.safety-tips-page .safety-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.safety-tips-page .safety-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(187, 37, 37, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(198, 207, 19, 0.1) 0%,
      transparent 50%
    );
  animation: heroBackground 10s ease-in-out infinite;
}

.safety-tips-page .safety-badge-wrapper {
  margin-bottom: 2rem;
}

.safety-tips-page .safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(187, 37, 37, 0.1);
  position: relative;
  overflow: hidden;
  animation: badgeFloat 3s ease-in-out infinite;
}

.safety-tips-page .badge-icon {
  position: relative;
  z-index: 2;
}

.safety-tips-page .shield-icon {
  font-size: 1.8rem;
  color: var(--color-1);
  animation: shieldPulse 2s ease-in-out infinite;
}

.safety-tips-page .badge-text {
  font-weight: 600;
  color: var(--color-3);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.safety-tips-page .badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--color-1), var(--color-2));
  opacity: 0;
  animation: badgeGlow 4s ease-in-out infinite;
}

.safety-tips-page .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-1);
  margin-bottom: 1.5rem;
  animation: titleSlideUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.safety-tips-page .hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-3);
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: subtitleFadeIn 1.5s ease-out 0.3s both;
  line-height: 1.6;
}

.safety-tips-page .hero-divider {
  position: relative;
  width: 200px;
  height: 4px;
  margin: 0 auto;
}

.safety-tips-page .divider-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-1),
    var(--color-2),
    transparent
  );
  border-radius: 2px;
  animation: dividerExpand 2s ease-out 0.6s both;
}

.safety-tips-page .divider-spark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-2);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: sparkMove 3s ease-in-out infinite;
  box-shadow: 0 0 10px var(--color-2);
}

/* Safety Guidelines */
.safety-tips-page .safety-guidelines {
  background: #f8f9fa;
  position: relative;
}

.safety-tips-page .safety-panel {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  animation: panelSlideIn 1s ease-out;
}

.safety-tips-page .safety-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.safety-tips-page .panel-header {
  position: relative;
  padding: 2rem;
  color: white;
  overflow: hidden;
}

.safety-tips-page .recommended-practices .panel-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.safety-tips-page .hazardous-actions .panel-header {
  background: linear-gradient(135deg, var(--color-1) 0%, #dc3545 100%);
}

.safety-tips-page .header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.safety-tips-page .header-icon {
  position: relative;
}

.safety-tips-page .check-icon,
.safety-tips-page .x-icon {
  font-size: 2.5rem;
  animation: iconFloat 2s ease-in-out infinite;
}

.safety-tips-page .icon-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.safety-tips-page .ripple {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rippleExpand 3s ease-out infinite;
}

.safety-tips-page .ripple-2 {
  animation-delay: 1s;
}

.safety-tips-page .ripple-3 {
  animation-delay: 2s;
}

.safety-tips-page .panel-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.safety-tips-page .header-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: headerSweep 4s ease-in-out infinite;
}

.safety-tips-page .panel-body {
  padding: 2rem;
}

/* Safety Cards */
.safety-tips-page .safety-card {
  height: 100%;
  animation: cardFadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.safety-tips-page .recommended-card {
  animation-delay: calc(0.2s + var(--delay, 0) * 0.2s);
}

.safety-tips-page .prohibited-card {
  animation-delay: calc(0.4s + var(--delay, 0) * 0.2s);
}

.safety-tips-page .card-wrapper {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.safety-tips-page .card-wrapper:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.safety-tips-page .card-icon-container {
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
}

.safety-tips-page .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.safety-tips-page .success-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.safety-tips-page .danger-icon {
  background: linear-gradient(135deg, var(--color-1), #dc3545);
  color: white;
}

.safety-tips-page .card-wrapper:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.safety-tips-page .card-icon-inner {
  font-size: 1.5rem;
}

.safety-tips-page .icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.2);
  animation: iconPulseEffect 2s ease-in-out infinite;
}

.safety-tips-page .danger-pulse {
  background: rgba(187, 37, 37, 0.2);
}

.safety-tips-page .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.safety-tips-page .card-wrapper:hover .card-title {
  color: var(--color-1);
}

.safety-tips-page .card-description {
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.safety-tips-page .card-wrapper:hover .card-description {
  color: var(--color-3);
}

.safety-tips-page .card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 167, 69, 0.1),
    transparent
  );
  transition: left 0.3s ease;
}

.safety-tips-page .danger-effect {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(187, 37, 37, 0.1),
    transparent
  );
}

.safety-tips-page .card-wrapper:hover .card-hover-effect {
  left: 100%;
}

/* Safety Notes */
.safety-tips-page .safety-notes {
  background: linear-gradient(135deg, var(--color-3) 0%, #5a4fcf 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  animation: notesSlideUp 1s ease-out 0.8s both;
}

.safety-tips-page .safety-notes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(198, 207, 19, 0.1) 0%,
    transparent 50%
  );
  animation: notesBackground 8s ease-in-out infinite;
}

.safety-tips-page .notes-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.safety-tips-page .notes-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.safety-tips-page .warning-icon {
  font-size: 3rem;
  color: var(--color-2);
  animation: warningBlink 2s ease-in-out infinite;
}

.safety-tips-page .warning-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: warningPulse 2s ease-out infinite;
}

.safety-tips-page .notes-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.safety-tips-page .notes-decoration {
  width: 100px;
  height: 3px;
  background: var(--color-2);
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: decorationPulse 3s ease-in-out infinite;
}

.safety-tips-page .note-item {
  animation: noteSlideIn 0.8s ease-out;
  animation-fill-mode: both;
  animation-delay: calc(1s + var(--delay, 0) * 0.2s);
}

.safety-tips-page .note-wrapper {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.safety-tips-page .note-wrapper:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.safety-tips-page .note-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.safety-tips-page .note-icon {
  font-size: 2.5rem;
  color: var(--color-2);
  animation: noteIconFloat 2s ease-in-out infinite;
}

.safety-tips-page .note-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(198, 207, 19, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: noteGlowPulse 3s ease-in-out infinite;
}

.safety-tips-page .note-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: white;
}

.safety-tips-page .note-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* Safety Statistics */
.safety-tips-page .safety-stats {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

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

.safety-tips-page .stats-subtitle {
  font-size: 1.2rem;
  color: var(--color-3);
  margin-bottom: 3rem;
}

.safety-tips-page .stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: statSlideUp 1s ease-out;
}

.safety-tips-page .stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.safety-tips-page .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-1), var(--color-2));
  animation: statBarGrow 2s ease-out;
}

.safety-tips-page .stat-icon {
  font-size: 3rem;
  color: var(--color-1);
  margin-bottom: 1.5rem;
  animation: statIconPulse 2s ease-in-out infinite;
}

.safety-tips-page .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 1rem;
  animation: numberCount 2s ease-out;
}

.safety-tips-page .stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Keyframe Animations */
@keyframes heroBackground {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(187, 37, 37, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(187, 37, 37, 0.6));
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
}

@keyframes titleSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes subtitleFadeIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

@keyframes dividerExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes sparkMove {
  0% {
    left: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}

@keyframes panelSlideIn {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

@keyframes rippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes headerSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes cardFadeIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconPulseEffect {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

@keyframes notesSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes notesBackground {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

@keyframes warningBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes warningPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes decorationPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.2);
    opacity: 0.8;
  }
}

@keyframes noteSlideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes noteIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes noteGlowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes statSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes statBarGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes statIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes numberCount {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

  .safety-tips-page .safety-panel {
    margin-bottom: 2rem;
  }

  .safety-tips-page .panel-header {
    padding: 1.5rem;
  }

  .safety-tips-page .panel-body {
    padding: 1.5rem;
  }

  .safety-tips-page .card-wrapper {
    padding: 1.2rem;
  }

  .safety-tips-page .safety-notes {
    padding: 2rem 1.5rem;
  }

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

  .safety-tips-page .stats-title {
    font-size: 2rem;
  }

  .safety-tips-page .stat-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .safety-tips-page .hero-title {
    font-size: 3rem;
  }

  .safety-tips-page .safety-panel {
    margin-bottom: 2rem;
  }

  .safety-tips-page .stats-title {
    font-size: 2.2rem;
  }
}
/* contact page */
/* Contact Page Styles */
.contact-hero .hero-title {
  animation: titleSlideIn 1s ease-out;
  position: relative;
  color: var(--color-1);
  font-weight: 700;
}

.contact-hero .hero-subtitle {
  animation: subtitleFadeIn 1.5s ease-out 0.3s both;
  color: var(--color-3);
  font-size: 1.2rem;
}

.contact-hero .hero-decoration {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-1), var(--color-2));
  margin: 2rem auto;
  border-radius: 2px;
  animation: decorationExpand 2s ease-out 0.6s both;
  position: relative;
}

.contact-hero .hero-decoration::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, var(--color-1), var(--color-2));
  border-radius: 4px;
  opacity: 0;
  animation: decorationGlow 3s ease-in-out infinite;
}

/* Contact Grid Animations */
.contact-main .contact-grid {
  animation: gridSlideUp 1s ease-out 0.8s both;
  transform: translateY(50px);
}

.contact-main .contact-info-panel {
  position: relative;
  overflow: hidden;
}

.contact-main .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(187, 37, 37, 0.1),
    transparent
  );
  animation: panelSweep 3s ease-in-out infinite;
}

/* Section Title */
.contact-main .section-title {
  color: var(--color-1);
  position: relative;
  overflow: hidden;
}

.contact-main .title-icon {
  animation: iconBounce 2s ease-in-out infinite;
  display: inline-block;
}

.contact-main .title-text {
  position: relative;
}

.contact-main .title-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-2);
  animation: underlineExpand 2s ease-out 1s both;
}

/* Contact Items */
.contact-main .contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.contact-main .contact-item:hover {
  background: rgba(255, 239, 6, 0.9);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(187, 37, 37, 0.1);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(187, 37, 37, 0.1);
}

.contact-main .contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--color-1);
  transition: height 0.3s ease;
}

.contact-main .contact-item:hover::before {
  height: 100%;
}

/* Icon Containers */
.contact-main .icon-container {
  position: relative;
  flex-shrink: 0;
}

.contact-main .icon-box {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-main .contact-item:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-main .contact-icon {
  font-size: 1.5rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.contact-main .icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(187, 37, 37, 0.2);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-main .contact-item:hover .icon-ripple {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
  animation: rippleEffect 1s ease-out forwards;
}

/* Contact Content */
.contact-main .contact-heading {
  color: var(--color-3);
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-main .contact-item:hover .contact-heading {
  color: var(--color-1);
}

.contact-main .animated-link {
  color: #6c757d;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.contact-main .animated-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-2);
  transition: width 0.3s ease;
}

.contact-main .animated-link:hover {
  color: var(--color-1);
  text-decoration: none;
}

.contact-main .animated-link:hover::after {
  width: 100%;
}

/* Business Hours */
.contact-main .business-hours {
  border-top: 2px solid #e9ecef;
  padding-top: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.contact-main .business-hours::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-2);
  animation: borderSlide 3s ease-in-out infinite;
}

.contact-main .hours-title {
  color: var(--color-3);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-main .clock-icon {
  animation: clockTick 2s ease-in-out infinite;
}

.contact-main .hours-item {
  padding: 0.3rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.contact-main .hours-item:hover {
  padding-left: 1rem;
  color: var(--color-1);
}

.contact-main .hours-time {
  color: var(--color-3);
  transition: color 0.3s ease;
}

.contact-main .hours-item:hover .hours-time {
  color: var(--color-1);
}

/* Map Container */
.contact-main .map-container {
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.contact-main .map-wrapper {
  height: 100%;
  position: relative;
}

.contact-main .contact-map {
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.contact-main .map-container:hover .contact-map {
  filter: grayscale(0%);
}

.contact-main .map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(50%);
  transition: transform 0.3s ease;
}

.contact-main .map-container:hover .map-overlay {
  transform: translateY(0);
}

.contact-main .map-title {
  margin-bottom: 0.5rem;
  animation: titleGlow 3s ease-in-out infinite;
}

.contact-main .map-icon {
  animation: locationBounce 2s ease-in-out infinite;
}

.contact-main .map-description {
  margin: 0;
  opacity: 0.9;
}

/* Emergency Section */
.emergency-contact {
  background: linear-gradient(135deg, var(--color-1) 0%, #d63031 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.emergency-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: emergencyPulse 4s ease-in-out infinite;
}

.emergency-contact .emergency-info {
  position: relative;
  z-index: 2;
}

.emergency-contact .emergency-icon-wrapper {
  position: relative;
}

.emergency-contact .emergency-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: emergencyBounce 2s ease-in-out infinite;
}

.emergency-contact .emergency-warning {
  font-size: 1.8rem;
  animation: warningFlash 2s ease-in-out infinite;
}

.emergency-contact .emergency-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: emergencyRipple 2s ease-out infinite;
}

.emergency-contact .emergency-title {
  color: white;
  font-weight: 700;
  animation: titleShake 3s ease-in-out infinite;
}

.emergency-contact .emergency-subtitle {
  opacity: 0.9;
  animation: subtitleFade 3s ease-in-out infinite;
}

/* Emergency Button */
.emergency-contact .emergency-btn {
  background: white;
  color: var(--color-1);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.emergency-contact .emergency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--color-1);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.emergency-contact .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emergency-contact .btn-icon {
  animation: phoneRing 2s ease-in-out infinite;
}

.emergency-contact .btn-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.emergency-contact .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-2);
  border-radius: 50%;
  opacity: 0;
}

.emergency-contact .sparkle-1 {
  top: 20%;
  left: 20%;
  animation: sparkleAnimation 2s ease-in-out infinite;
}

.emergency-contact .sparkle-2 {
  top: 30%;
  right: 20%;
  animation: sparkleAnimation 2s ease-in-out 0.5s infinite;
}

.emergency-contact .sparkle-3 {
  bottom: 20%;
  left: 30%;
  animation: sparkleAnimation 2s ease-in-out 1s infinite;
}

.emergency-contact .sparkle-4 {
  bottom: 30%;
  right: 30%;
  animation: sparkleAnimation 2s ease-in-out 1.5s infinite;
}

.emergency-contact .emergency-btn:hover .sparkle {
  animation-duration: 0.5s;
}

/* Keyframe Animations */
@keyframes titleSlideIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes subtitleFadeIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes decorationExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}

@keyframes decorationGlow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes gridSlideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes panelSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes underlineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rippleEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes borderSlide {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes clockTick {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

@keyframes locationBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes emergencyPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

@keyframes emergencyBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes warningFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes emergencyRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes titleShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes subtitleFade {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
}

@keyframes sparkleAnimation {
  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

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

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

  .contact-main .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-main .icon-container {
    margin-bottom: 1rem;
  }

  .contact-main .contact-item:hover {
    transform: translateY(-5px);
  }

  .contact-main .map-container {
    min-height: 300px;
    margin-top: 2rem;
  }

  .emergency-contact .emergency-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  .emergency-contact .emergency-info {
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

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

  .contact-main .contact-item {
    padding: 1.2rem;
  }

  .contact-main .map-container {
    min-height: 400px;
    margin-top: 2rem;
  }
}
/* footer styles */
/* Dark Footer Styles */
.site-footer {
  position: relative;
  background-color: #000000db;
  background-image: url("../images/footerbg-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-attachment: fixed;
  color: #e0e0e0;
  overflow: hidden;
}

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

/* Footer Wave */
.site-footer .footer-top-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 106px;
  z-index: 1;
  transform: scaleY(-1);
}

/* Fireworks Background */
.site-footer .fireworks-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.site-footer .firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: firework 5s infinite;
}

.site-footer .firework-1 {
  top: 20%;
  left: 10%;
  background-color: var(--color-1);
  animation-delay: 0s;
}

.site-footer .firework-2 {
  top: 40%;
  left: 30%;
  background-color: var(--color-2);
  animation-delay: 1s;
}

.site-footer .firework-3 {
  top: 60%;
  left: 70%;
  background-color: var(--color-3);
  animation-delay: 2s;
}

.site-footer .firework-4 {
  top: 30%;
  left: 90%;
  background-color: var(--color-1);
  animation-delay: 3s;
}

@keyframes firework {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

/* Logo Section */
.site-footer .footer-logo-wrapper {
  position: relative;
  display: inline-block;
}

.site-footer .footer-logo {
  max-height: 80px;
  transition: transform 0.3s ease;
}

.site-footer .footer-logo:hover {
  transform: scale(1.05);
}

.site-footer .logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(198, 207, 19, 0.3) 0%,
    rgba(198, 207, 19, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.site-footer .footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

/* Footer Headings */
.site-footer .footer-heading {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.site-footer .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--color-1), var(--color-2));
}

/* Footer Links Grid */
.site-footer .footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.site-footer .footer-link-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer .footer-link-item:hover {
  background-color: rgba(187, 37, 37, 0.2);
  transform: translateX(5px);
}

.site-footer .link-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: var(--color-2);
  transition: transform 0.3s ease;
}

.site-footer .footer-link-item:hover .link-icon {
  transform: scale(1.2);
  color: var(--color-1);
}
.site-footer .footer-links-grid a:last-child {
  grid-column: span 2; /* make last item span both columns */
  /* justify-self: center; center it horizontally */
  text-align: center;
}

/* Contact Info */
.site-footer .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer .contact-item {
  display: flex;
  align-items: flex-start;
}

.site-footer .contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(72, 61, 139, 0.2);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.site-footer .contact-icon {
  font-size: 1.2rem;
  color: var(--color-2);
}

.site-footer .contact-details {
  flex-grow: 1;
}

.site-footer .contact-text {
  margin: 0;
  color: #b0b0b0;
  line-height: 1.5;
}

.site-footer .contact-link {
  display: inline-block;
  color: #e0e0e0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.site-footer .contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-2);
  transition: width 0.3s ease;
}

.site-footer .contact-link:hover {
  color: var(--color-2);
}

.site-footer .contact-link:hover::after {
  width: 100%;
}

/* Copyright Section */
.site-footer .copyright-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.site-footer .copyright-text,
.site-footer .developer-text {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.site-footer .brand-name {
  color: var(--color-1);
  font-weight: 700;
}

.site-footer .developer-link {
  color: var(--color-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer .developer-link:hover {
  color: var(--color-1);
}

/* Media Queries */
@media (min-width: 1px) and (max-width: 767.98px) {
  .site-footer {
    background-image: none;
  }
  .site-footer .footer-logo {
    max-height: 80px;
    position: relative;
    top: -49px;
  }

  .site-footer .footer-heading {
    font-size: 1.1rem;
  }

  .site-footer .footer-links-grid {
    grid-template-columns: 100%;
  }
  .site-footer .footer-links-grid a:last-child {
    grid-column: 1; /* make last item */
    /* justify-self: center; center it horizontally */
    text-align: center;
  }

  .site-footer .social-links {
    justify-content: center;
  }

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

@media (min-width: 768px) and (max-width: 991.98px) {
  .site-footer .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* utility classes */
.bg-green {
  background-color: var(--color-4) !important;
}
/* theme button */
/* SPARKLE BUTTON COMPONENT */
.sparkle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  border: none;
  cursor: pointer;
}

/* Button Colors */
.sparkle-btn-primary {
  background: linear-gradient(135deg, var(--color-1), var(--color-3));
  color: white;
  box-shadow: 0 4px 15px rgba(187, 37, 37, 0.3);
}

.sparkle-btn-secondary {
  background: linear-gradient(135deg, var(--color-3), var(--color-2));
  color: white;
  box-shadow: 0 4px 15px rgba(72, 61, 139, 0.3);
}

/* Button Elements */
.btn-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-icon {
  position: relative;
  margin-left: 10px;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.btn-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 50px;
}

.sparkle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

/* Hover Effects */
.sparkle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(187, 37, 37, 0.4);
  color: white;
}

.sparkle-btn:hover .btn-text {
  transform: translateX(5px);
}

.sparkle-btn:hover .btn-icon {
  transform: translateX(5px) rotate(45deg);
}

.sparkle-btn:hover .sparkle {
  animation: sparklePop 0.6s ease-out forwards;
}

/* Keyframe Animations */
@keyframes sparklePop {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
    width: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1);
    opacity: 0;
    width: 8px;
    height: 8px;
  }
}

/* Sparkle Positions - Customize as needed */
.sparkle:nth-child(1) {
  --tx: -15px;
  --ty: -10px;
  top: 20%;
  left: 15%;
  animation-delay: 0.1s;
}

.sparkle:nth-child(2) {
  --tx: 10px;
  --ty: -15px;
  top: 15%;
  left: 60%;
  animation-delay: 0.2s;
}

.sparkle:nth-child(3) {
  --tx: -5px;
  --ty: 20px;
  top: 70%;
  left: 30%;
  animation-delay: 0.3s;
}

.sparkle:nth-child(4) {
  --tx: 15px;
  --ty: 10px;
  top: 65%;
  left: 75%;
  animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .sparkle-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .sparkle-btn:hover {
    transform: translateY(-2px);
  }
}
/* custom css ends */
.w0 {
  width: 0%;
}
.fixed {
  position: fixed;
  z-index: 2;
}
.priceicn {
  width: 50px;
}
.priceicn2 {
  width: 120px;
}
.point {
  bottom: 10px;
  left: 10px;
}
.point1 {
  bottom: 70px;
  left: 10px;
}
.point2 {
  bottom: 15px;
  right: 10px;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@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);
}
