:root {
  --primary: #b71c1c;
  --secondary: #f57c00;
  --gold: #ffc107;
  --orange: #ff7043;
  --yellow: #ffee58;
  --white: #ffffff;
  --light: #fff3e0;
  --dark: #2e1a0f;
  --success: #2e7d32;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
}

.text-accent {
  color: var(--secondary);
}
.text-gold {
  color: var(--gold);
}

/* Global CSS */

#globalFireworksCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Top Bar  */

.top-bar {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--gold),
    var(--secondary),
    var(--primary)
  );
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  white-space: nowrap;
  overflow: hidden;
}
.top-bar marquee {
  color: var(--white);
}

/* Navbar Section */

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  min-height: 140px;
  overflow: visible;
  /* background: var(--white); */
  background: linear-gradient(360deg, #ffcc80, #fff3e0);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}
.navbar-brand {
  position: relative;
}
.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 190px;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 10;
} .logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(245, 196, 65, 0.3));
}
.custom-navbar.navbar-scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.custom-navbar .container {
  width: 100%;
  max-width: 1500px;
}

.logo-img {
  height: 100px;
  width: auto;
  border-radius: 100%;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(245, 196, 65, 0.3));
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 10px rgba(245, 196, 65, 0.6));
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  border: none;
  background: transparent;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: var(--primary);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px !important;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.nav-menu .nav-link i {
  font-size: 0.85rem;
}

.nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--secondary) !important;
  background: transparent;
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
  transform: scaleX(1);
}

.price-btn {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  border: none;
  box-shadow: 0 6px 16px rgba(122, 30, 30, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.price-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122, 30, 30, 0.45);
}

@media (max-width: 991.98px) {
  .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    padding: 0 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease,
      transform 0.3s ease,
      padding 0.35s ease;
  }

  .nav-menu.show {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 20px 20px;
  }

  .nav-menu .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-menu.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.show .nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  .nav-menu.show .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  .nav-menu.show .nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }
  .nav-menu.show .nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }
  .nav-menu.show .nav-item:nth-child(5) {
    transition-delay: 0.25s;
  }
  .nav-menu.show .nav-item:nth-child(6) {
    transition-delay: 0.3s;
  }

  .nav-menu .nav-link {
    width: 100%;
  }

  .custom-navbar .container {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .price-btn {
    margin-top: 8px;
    display: inline-block;
    text-align: center;
  }

  .navbar-brand img {
    height: 60px;
    width: auto;
  }
}
@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 45px;
  }
}

/*  Banner Section */

.hero-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Welcome Section */

.welcome-section {
  background: var(--light);
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.welcome-subtitle {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 1px;
}

.welcome-title {
  color: var(--dark);
  font-size: 3.4rem;
  line-height: 1.3;
}

.text-highlight {
  background: linear-gradient(90deg, var(--primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-desc {
  color: #5a4d44;
  font-size: 1rem;
  line-height: 1.7;
}

.check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-btn {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: var(--dark);
  border-radius: 50px;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
  color: var(--dark);
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50% 50% 50% 60% / 55% 55% 45% 45%;
  border: 3px dashed var(--gold);
  opacity: 0.6;
  animation: heroRingSpin 12s linear infinite;
  z-index: -1;
}

.hero-img {
  border-radius: 50% 50% 50% 60% / 55% 55% 45% 45%;
  animation: heroGlowPulse 3s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 112, 67, 0.55));
  }
}

.hero-text > * {
  opacity: 0;
  transform: translateX(40px);
  animation: heroSlideIn 0.8s ease forwards;
}

.hero-subtitle {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.3s;
}
.hero-desc {
  animation-delay: 0.5s;
}
.hero-checklist {
  animation-delay: 0.7s;
}
.hero-btn {
  animation-delay: 1.3s;
}

.hero-checklist li {
  opacity: 0;
  transform: translateX(40px);
  animation: heroSlideIn 0.8s ease forwards;
}

.hero-checklist li:nth-child(1) {
  animation-delay: 0.8s;
}
.hero-checklist li:nth-child(2) {
  animation-delay: 0.95s;
}
.hero-checklist li:nth-child(3) {
  animation-delay: 1.1s;
}
.hero-checklist li:nth-child(4) {
  animation-delay: 1.25s;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Celebration Colllection */

.vibe-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.vibe-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.vibe-title {
  color: var(--white);
  font-size: 2.2rem;
}

.vibe-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--success), var(--gold));
  border-radius: 2px;
}

.vibe-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.vibe-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 24px;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.vibe-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.vibe-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.vibe-card:hover .vibe-icon {
  transform: scale(1.1) rotate(-6deg);
}

.vibe-card-title {
  color: var(--white);
  font-size: 1.1rem;
}

.vibe-card-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.vibe-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Product Section */

.products-section {
  position: relative;
  background-image: url("../images/product-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 90px 0;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 15, 0.55);
  z-index: 0;
}

.products-section .container {
  max-width: 1500px;
  position: relative;
  z-index: 2;
}

.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 0;
}

.row.g-4 > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.spark-decor {
  position: absolute;
  opacity: 0.15;
  color: var(--orange);
  pointer-events: none;
  z-index: 1;
}

.products-tag {
  display: block;
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.products-heading {
  text-align: center;
  font-weight: 800;
  font-size: 3.6rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.products-heading .products-grad-text {
  background: linear-gradient(90deg, var(--secondary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-sub {
  text-align: center;
  color: #f0e6e0;
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(122, 30, 30, 0.35);
}

.product-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(160deg, #4a1010, var(--primary));
}

.product-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.btn-view-products {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.btn-view-products:hover {
  background: linear-gradient(90deg, var(--gold), var(--secondary));
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 140, 66, 0.35);
  text-decoration: none;
}

@media (max-width: 767px) {
  .products-heading {
    font-size: 2rem;
  }
  .product-card {
    margin-bottom: 24px;
  }
}

/* Commit Section */

.why-choose-section {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.why-label {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-title {
  color: var(--dark);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.25;
}

.text-highlight-1 {
  color: var(--dark);
}

.why-title .d-block {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card {
  background: var(--light);
  border: 1px solid rgba(46, 26, 15, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-card:hover {
  border: 1.5px solid var(--primary);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.1);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.why-card-title {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.why-card-desc {
  color: #6b6b6b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Contact Page CSS */

.contact-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #fdf5f0 0%, #ffffff 50%, #fdf0f5 100%);
}

.contact-header {
  margin-bottom: 45px;
}

.contact-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-title {
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--dark);
}

.contact-title .highlight {
  background: linear-gradient(90deg, var(--secondary), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-subtitle {
  color: #7a7a7a;
  font-size: 1rem;
  max-width: 560px;
  margin: 10px auto 0;
}

.contact-info-card {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  min-height: 420px;
}

.info-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.info-item h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  color: #e3d6e0;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.contact-map-card {
  position: relative;
  border-radius: 16px;
  height: 100%;
  min-height: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.contact-map-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 1.9rem;
  }

  .contact-info-card,
  .contact-map-card {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .contact-info-card {
    padding: 28px 22px;
    min-height: auto;
  }

  .contact-map-card {
    min-height: 300px;
  }

  .info-item {
    gap: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* About Section CSS */

.about-section {
  padding: 90px 0;
  background: var(--light);
  overflow: hidden;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(122, 30, 30, 0.25);
}

.about-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 22px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(122, 30, 30, 0.35);
  text-align: center;
}

.about-badge h3 {
  font-weight: 800;
  font-size: 2rem;
  margin: 0;
  color: var(--gold);
}

.about-badge p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.about-tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-tag::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.about-section h2 {
  font-weight: 800;
  color: var(--dark);
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-section h2 span {
  color: var(--secondary);
}

.about-section p.lead-text {
  color: #5c5c5c;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.feature-item h6 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-item p {
  color: #6b6b6b;
  font-size: 0.9rem;
  margin: 0;
}

.btn-explore {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--primary);
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 50px;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 140, 66, 0.35);
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 140, 66, 0.45);
  color: var(--primary);
}

@media (max-width: 991px) {
  .about-badge {
    right: 10px;
    bottom: -20px;
    padding: 16px 20px;
  }
  .about-section h2 {
    font-size: 2rem;
  }
  .about-img-wrap {
    margin-bottom: 60px;
  }
}

/* About Section Happy Customer Status */

.stats-section {
  background: linear-gradient(135deg, #6b1030, var(--primary));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats-heading {
  text-align: center;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.stats-heading .highlight {
  background: linear-gradient(90deg, var(--secondary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.stats-section .container {
  max-width: 1300px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 45px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.35s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.stat-icon {
  width: 70px;
  height: 0px;
  margin: 0 auto 20px;
  background: rgba(255, 213, 79, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
}

.stat-number {
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.sparkle {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.mvp-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  background-size: 250% 250%;
  animation: mvpBgMove 12s ease infinite;
  overflow: hidden;
}

@keyframes mvpBgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.mvp-bg-glow {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 78, 80, 0.35) 0%,
    rgba(255, 78, 80, 0) 70%
  );
  animation: mvpGlowMove 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mvpGlowMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60vw, 40px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.mvp-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mvp-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  animation: mvpParticleFloat 6s linear infinite;
}

.mvp-particles span:nth-child(1) {
  left: 8%;
  top: 80%;
  animation-delay: 0s;
  background: var(--gold);
}
.mvp-particles span:nth-child(2) {
  left: 22%;
  top: 90%;
  animation-delay: 1.2s;
  background: var(--secondary);
}
.mvp-particles span:nth-child(3) {
  left: 45%;
  top: 85%;
  animation-delay: 2.4s;
  background: var(--orange);
}
.mvp-particles span:nth-child(4) {
  left: 63%;
  top: 92%;
  animation-delay: 3.6s;
  background: var(--gold);
}
.mvp-particles span:nth-child(5) {
  left: 80%;
  top: 82%;
  animation-delay: 4.8s;
  background: var(--pink);
}
.mvp-particles span:nth-child(6) {
  left: 92%;
  top: 88%;
  animation-delay: 2s;
  background: var(--yellow);
}

@keyframes mvpParticleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-380px) scale(0.4);
    opacity: 0;
  }
}

.mvp-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(4px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mvp-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    160deg,
    rgba(252, 252, 252, 0.18),
    rgba(251, 251, 251, 0.15)
  );
  border-color: white;
  box-shadow: 0 0 35px rgba(250, 248, 249, 0.35);
}

.mvp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 22px;
  color: var(--white);
}

.mvp-icon-pink {
  background: rgba(255, 213, 79, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 213, 79, 0.4);
}

.mvp-icon-gold {
  background: rgba(255, 213, 79, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 213, 79, 0.4);
}

.mvp-card h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.mvp-card p {
  color: #c9bcd1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .mvp-section {
    padding: 55px 0;
  }

  .mvp-card {
    padding: 32px 22px;
  }
}

@media (max-width: 575.98px) {
  .mvp-section {
    padding: 40px 0;
  }

  .mvp-icon {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }

  .mvp-card h3 {
    font-size: 1.1rem;
  }

  .mvp-card p {
    font-size: 0.88rem;
  }

  .mvp-bg-glow {
    width: 320px;
    height: 320px;
  }
}

/* Spark Section */

.sparkle-section {
  background: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.sparkle-title {
  font-family: "Baloo 2", cursive;
  color: var(--dark);
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
}

.sparkle-underline {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 4px;
  margin: 18px auto 22px;
}

.sparkle-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 65px;
}

.step-track {
  position: relative;
}

.step-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  /* border-top: 2px dashed rgba(183,28,28,0.4); */
  z-index: 0;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--light);
  border-radius: 18px;
  padding: 55px 28px 35px;
  position: relative;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(46, 26, 15, 0.08);
  z-index: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(46, 26, 15, 0.16);
}

.step-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    var(--orange),
    var(--primary) 75%
  );
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px var(--white),
    0 0 25px 4px var(--crimson-glow);
}

.step-icon {
  width: 66px;
  height: 66px;
  margin: 6px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step-icon i {
  font-size: 2.1rem;
  color: var(--primary);
}

.step-heading {
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .step-track::before {
    display: none;
  }
  .sparkle-title {
    font-size: 2.1rem;
  }
  .step-card {
    margin-bottom: 45px;
  }
}

/* Safety Tips Section */

.safety-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.safety-title {
  color: var(--dark);
  font-weight: 700;
  font-size: 2.2rem;
}

.text-do {
  color: var(--success);
}

.text-avoid {
  background: linear-gradient(90deg, var(--primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.safety-card {
  border-radius: 14px;
  padding: 34px 24px;
  border: 1px solid transparent;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.safety-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.safety-card-title {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.safety-card-desc {
  color: #6b6b6b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.safety-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.do-section {
  background: #eef7ef;
}

.do-card {
  background: #f4faf5;
  border-color: rgba(46, 125, 50, 0.2);
}

.do-icon {
  background: rgba(46, 125, 50, 0.12);
  color: var(--success);
}

.avoid-section {
  background: #fdf1f0;
}

.avoid-card {
  background: #fdf5f4;
  border-color: rgba(183, 28, 28, 0.2);
}

.avoid-icon {
  background: rgba(183, 28, 28, 0.12);
  color: var(--primary);
}

/* Footer Section */

.site-footer {
  position: relative;
  background-image: url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
}

.footer-gradient-line {
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--gold),
    var(--secondary),
    var(--primary)
  );
}

.site-footer .container {
  padding-top: 50px;
  padding-bottom: 20px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    360deg,
    rgba(20, 10, 5, 0.75) 0%,
    rgba(121, 120, 119, 0.85) 100%
  );
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--white);
  text-decoration: none;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact li a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact li a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 22px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 0.5px solid rgb(142, 129, 129);
  padding-top: 14px;
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
  font-size: 0.8rem;
  margin: 0;
}

/* Reveal Action */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(70px);
}

.reveal-left {
  transform: translateX(-110px);
}

.reveal-right {
  transform: translateX(110px);
}

.reveal-zoom {
  transform: scale(0.82);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-stagger > *,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > *,
.reveal-grid.active > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-stagger > *,
  .reveal-grid > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Floating Icon */

.floating-contact-wrap {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: floatPulse 2.2s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.call-btn {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 0;
}

.call-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.whatsapp-btn {
  background: #25d366;
  padding: 0;
}

.whatsapp-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  }
}

@media (max-width: 576px) {
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .floating-contact-wrap {
    left: 14px;
    bottom: 18px;
  }
}

/* Quick Purchase */

.quick-purchase-btn {
  position: fixed;
  right: 10px;
  top: 85%;
  transform: translateY(-50%);
  z-index: 998;
  width: 90px;
  display: block;
  animation: quickBlink 1.4s ease-in-out infinite;
}

.quick-purchase-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.quick-purchase-btn:hover {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.08);
}

@keyframes quickBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 991px) {
  .quick-purchase-btn {
    width: 75px;
    top: 82%;
    right: 16px;
  }
}

@media (max-width: 576px) {
  .quick-purchase-btn {
    width: 60px;
    top: 78%;
    right: 12px;
  }
}

@media (max-width: 380px) {
  .quick-purchase-btn {
    width: 50px;
    top: 76%;
    right: 10px;
  }
}

/* Top Scroll Button */

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 54px;
  height: 54px;
  z-index: 997;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.show {
  display: flex;
}

.scroll-top-btn i {
  position: absolute;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 5;
}

.progress-ring-fill {
  fill: none;
  stroke: url(#scrollGradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 576px) {
  .scroll-top-btn {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 18px;
  }
  .progress-ring-bg,
  .progress-ring-fill {
    stroke-width: 4;
  }
  .progress-ring-fill {
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
  }
  .scroll-top-btn i {
    font-size: 1.4rem;
  }
}
