/** Napquina Custom Stylesheet **/
/* General */
html {
  scroll-behavior: smooth;
}

.about-us {
  padding-bottom: 0;
  padding-top: 50px;
  background-color: #fff;
  overflow: hidden;
  padding-top: 10px !important;
  margin-top: -40px !important;
}

.about-us-content {
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 5px;
}

.section-title h2,
.section-title h3 {
  margin-bottom: 20px; 
}

.section-title p,
.section-title b {
  margin-bottom: 0;
}

.limited-units, .stock-message {
  color: #1b5ca6;
  font-weight: bold;
  font-size: 26px;
  margin-top: 10px;
  animation: blink 2s infinite;
  text-align: left;
}

@media (max-width: 768px) {
  .limited-units, .stock-message {
    font-size: 20px;
    margin-top: 6px;
    background: none;
    border: none;
  }
}

@media (max-width: 768px) {
  .navbar-brand .logo {
    margin-top: 10px;
  }
}

#products {
  scroll-margin-top: 20px;
}

.clean-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 36px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clean-play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.whtsapp-icon {
  position: fixed;
  bottom: 15px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1EBE57, #0ba360);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  box-shadow: 0 8px 20px rgba(30, 190, 87, 0.4);
  cursor: pointer;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 4px; /* creates spacing between icon and white bg */
}

.whtsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(30, 190, 87, 0.6);
}

.whtsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(30, 190, 87, 0.4);
  border-radius: 50%;
  z-index: 1;
  animation: ripple-animation 1.8s infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes ripple-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whtsapp-icon {
    bottom: 30px;
    right: 15px;
  }
}

.faq-section {
  padding-top: 30px;
  background-color: #F8D2E7 !important;
}

@media (max-width: 768px) {
  .logo {
    width: 140px;  /* or any size that looks good */
    height: auto;
    top: 10px; /* optional: adjust vertical spacing */
  }
}

/* Top Belt Section with Gradient Background */
.top-belt {
    background: #151d44;
    text-align: center;
    padding: 10px 0;
    z-index: 9999;
    position: relative;
}

/* Buttons inside Belt */
.belt-link {
    display: inline-block;
    background: #8B0000;
    color: #ffffff;
    padding: 8px 18px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.25);
}

.belt-link:hover {
    background-color: #c1121f;  /* Slightly darker on hover */
    transform: scale(1.05);
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .top-belt {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 6px 8px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .top-belt::-webkit-scrollbar {
        display: none;
    }

    .belt-link,
    .post-ship-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        margin: 0;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 20px;
        font-weight: bold;
        text-align: center;
        color: #ffffff;
        background-color: #8B0000;
        text-decoration: none;
        cursor: pointer;
        display: inline-block;
        box-shadow: 0 3px 8px rgba(0, 184, 148, 0.25);
    }

    .belt-link:hover,
    .post-ship-btn:hover {
        background-color: #c1121f;
    }
}

.header-container {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  background-color: white;
}

.logo-review-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; /* reduce this for tighter spacing */
  flex-wrap: wrap;
  justify-content: center;
}

.logo-block img.logo {
  max-height: 75px;
  width: auto;
}

.google-link {
  text-decoration: none;
}

.google-review {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  color: black;
  text-align: left;
}

.google-logo {
  width: 40px;
  height: 40px;
}

.google-review-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-rating {
  font-weight: bold;
  font-size: 16px;
  color: black;
}

.google-review-label {
  font-size: 13px;
  color: black;
}

.gold-stars {
  color: #FFD700; /* Golden Yellow */
  font-size: 16px;
  margin-right: 6px;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #ccc;
}

@media (max-width: 768px) {
  .logo-review-wrapper {
    flex-direction: row; /* ← force horizontal layout */
    flex-wrap: nowrap;
    gap: 10px; /* reduce spacing if needed */
    justify-content: center;
    align-items: center;
  }

  .logo-block img.logo {
    max-height: 50px;
  }

  .google-review {
    justify-content: center;
    text-align: left; /* or center, as per preference */
  }
}

/* Default: Desktop (Justified or Left-Aligned) */
.hero .section-title h2 {
  color: #1b5ca6;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: -30px !important;
  margin-bottom: 4px;
  text-align: justify; /* Or use 'left' if you prefer */
}

/* Mobile: Improve spacing + readability */
@media (max-width: 768px) {
  .hero .section-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero .section-title h2 {
    font-size: 19px !important;         /* ⬆️ Slightly larger */
    line-height: 1.1 !important;
    text-align: left !important;
    padding: 0 16px !important;
    margin-top: -30px !important;
  }

  .hero .section-title p {
    font-size: 19px !important;         /* ⬆️ Slightly larger */
    line-height: 1.4 !important;
    text-align: left !important;
    padding: 0 16px !important;
    margin-top: 0 !important;
  }

  .hero .section-title h4 {
    font-size: 19px !important;         /* ⬆️ Slightly larger */
    letter-spacing: 0.5px !important;
    text-align: center !important;
    margin-top: 0 !important;
  }
}

/* Desktop style for truth message */
.truth-message {
  color: #151d44;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  padding: 0 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .truth-message {
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    padding: 0 16px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .truth-message + .truth-message {
    margin-top: 4px !important; /* Small gap between the two texts */
  }
}

/* 🔹 Floating Glass Bar */
#napquinaFloatBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.25); /* Glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  opacity: 0; /* Always visible */
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#napquinaFloatBar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* 💬 Inner Content Layout */
.napquina-float-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 12px 24px;
}

/* 🖼️ Icon */
.napquina-float-content img {
  height: 32px;
  margin-right: 12px;
}

/* 📄 Text */
.napquina-float-text {
  flex-grow: 1;
  color: #151d44;
  font-size: 16px;
  font-weight: 600;
  white-space: normal;
}

.napquina-float-text .dialogue {
  font-size: 16px;
  font-weight: 500;
}

/* 🔘 Shop Now Button - Always Active Style */
.shop-now-button {
  display: inline-block;
  background: #8B0000; /* Normal red */
  color: #ffffff;
  font-weight: bold;
  padding: 12px 40px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(139, 0, 0, 0.4);
  animation: pulse-grow 1.5s infinite;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* 🖱️ Hover Effect */
.shop-now-button:hover {
  background: #c1121f;
  color: #ffffff;
  transform: scale(1.05);
}

/* 💥 New Pulse-Grow Animation */
@keyframes pulse-grow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.5);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(139, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0);
  }
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
  .napquina-float-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 8px 16px;
  }

  .napquina-float-content img {
    height: 20px;
    margin: 0;
    flex: 0 0 auto;
  }

  .napquina-float-text {
    flex: 1 1 100%;
    font-size: 14px;
  }

  .napquina-float-text .dialogue {
    font-size: 14px;
  }

  .shop-now-button {
    padding: 8px 24px;
    font-size: 14px;
    margin-top: 5px;
  }
}

/* ✨ Attention-Grabbing Animation */
@keyframes pulse-jump {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2px, -4px); }
  40%  { transform: translate(2px, -2px); }
  60%  { transform: translate(-2px, 2px); }
  80%  { transform: translate(2px, 4px); }
  100% { transform: translate(0, 0); }
}

.cta-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(139, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse-grow 1.5s infinite; /* Added pulse effect */
}

/* Hover Effect */
.cta-button:hover {
  background-color: #c1121f !important;
  color: #ffffff;
  transform: scale(1.05);
}

/* Glitter effect */
.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: glitter 2.4s infinite linear;
  pointer-events: none;
  z-index: 1;
}

/* Pulse Animation */
@keyframes pulse-grow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.5);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(139, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0);
  }
}

/* Glitter Keyframes */
@keyframes glitter {
  0% {
    transform: translate(-100%, -100%) rotate(25deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(25deg);
  }
}
  
  .about-us-section {
    background-color: #e2efca !important;
}

.our-testimonials.dark-section.parallaxie {
  background-color: #e2efca;
  color: #151d44; /* Main text color */
}

.our-testimonials .section-title h2,
.our-testimonials .section-title h3 {
  color: #1b5ca6;
}

.testimonial-item {
  background-color: #f3f4f6; /* light grey */
  color: #151d44;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

/* Default stars - red for all */
.testimonial-rating i {
  color: #b33c3c !important;
}

/* Active slide stars - gold */
.swiper-slide-active .testimonial-rating i {
  color: #f4b400 !important;
}

.review-content p,
.review-content span,
.section-btn p {
  color: #151d44;
}

.review-content p {
  font-size: 18px; /* or 20px if you want it larger */
  font-weight: 600;
}

.review-content ul li i.fa-star {
  color: #f4b400 !important; /* Gold color */
}  

.review-content span {
  font-size: 20px;
  font-weight: 600;
}

.testimonial-button-prev,
.testimonial-button-next,
.testimonial-button-prev::before,
.testimonial-button-next::before,
.testimonial-button-prev svg,
.testimonial-button-next svg {
  color: #151d44 !important;
  fill: #151d44 !important; /* For SVG arrows */
}

/* Section Background */
.faq-section {
  background-color: #e2efca !important;
}

/* Section Headings */
.faq-section .section-title h2 {
  color: #1b5ca6;
  font-weight: 700;
}

.faq-section .section-title p {
  color: #151d44;
  font-weight: 600;
}

/* Accordion Button (Closed) */
.accordion-button {
  background-color: #ffffff;
  color: #1b5ca6;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #d1d5db;
}

/* Accordion Button (Active/Open) */
.accordion-button:not(.collapsed) {
  background-color: #f3f4f6;
  color: #b33c3c;
  box-shadow: none;
}

/* Accordion Content */
.accordion-body {
  background-color: #ffffff;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

/* Accordion Items */
.accordion-item {
  border: none;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.accordion-body {
  text-align: justify;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 4px;
}

.accordion-body p {
  margin-bottom: 12px;
}

#testimonials {
  margin-top: 50px;
  padding-top: 20px; /* reduce as needed */
}

#features.our-key-points {
  margin-top: 0;
  padding-top: 20px;   /* or 0 if you want no space */
  margin-bottom: 0;
  padding-bottom: 20px; /* optional based on layout */
}

#products {
  margin-top: 0 !important;
  padding-top: 20px;   /* or 0 if you want no spacing */
  margin-bottom: 0 !important;
  padding-bottom: 20px; /* optional */
}

.btn-default {
    background-color: #8B0000;
    color: #ffffff !important;
    border: none;
}

.btn-default:hover {
    background-color: #c1121f;
}

#purchase-popup {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1b5ca6, #b41e61);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  max-width: 400px; /* ✅ Desktop: restrict width to keep height tight */
  width: 100%;
  text-align: center;
  display: none;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  word-wrap: break-word;
  white-space: normal;
}

#purchase-popup strong {
  color: #ffffff;
}

#purchase-popup em {
  color: #ffdede;
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
}

#purchase-popup.scrolled {
  top: 0;
  margin-top: 0;
}

/* ✅ Mobile-specific adjustments */
@media (max-width: 768px) {
  #purchase-popup {
    top: 50px;
    font-size: 13px;
    padding: 10px 14px;
    max-width: 300px; /* ✅ Tighter on mobile to force text wrap */
  }

  #purchase-popup em {
    font-size: 12px;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.95);
  }
}

#purchase-popup.fade-in {
  display: block;
  animation: fadeInScale 0.5s ease-out forwards;
  pointer-events: auto;
}

#purchase-popup.fade-out {
  animation: fadeOutScale 0.4s ease-in forwards;
  pointer-events: none;
}

.what-we-do {
  margin-top: -4em
}

.timer-box .best-seller-btn .btn-default::after {
  background: 
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  animation: shine-glitter 1.4s infinite; /* faster */
  width: 100%; /* narrower */
  height: 500%;
  top: -75%;
  left: -100%;
  transform: rotate(40deg);
}
@keyframes shine-glitter {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.timer-box .about-us-btn.clock {
  position: relative;
  overflow: hidden; /* Needed for the shine */
}

.timer-box .about-us-btn.clock::after {
  content: '';
  position: absolute;
  top: -75%;
  left: -100%;
  width: 100%;
  height: 250%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(40deg);
  animation: shine-glitter 1.4s infinite;
  pointer-events: none;
  z-index: 1;
}

.timer-buy-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.timer-buy-btn::after {
  content: "";
  position: absolute;
  top: -75%;
  left: 150%;
  width: 100%;
  height: 250%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: glitter-right-left 1.5s infinite;
  transform: rotate(40deg);
  pointer-events: none;
}

@keyframes glitter-right-left {
  0% {
    left: 150%;
  }
  100% {
    left: -100%;
  }
}

.glitter-effect {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.glitter-effect::after {
  content: "";
  position: absolute;
  top: -75%;
  left: 150%;
  width: 100%;
  height: 250%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: glitter-right-left 1.5s infinite;
  transform: rotate(40deg);
  pointer-events: none;
  z-index: 1;
}

@keyframes glitter-right-left {
  0% {
    left: 150%;
  }
  100% {
    left: -100%;
  }
}

/* Base animation for scroll-in effect */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft pulse animation */
@keyframes pulseText {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.key-points-step-content h3 {
  opacity: 0;
  animation: fadeUp 1s ease forwards, pulseText 2.4s infinite ease-in-out;
  animation-delay: var(--delay, 0.2s);
  font-weight: bold;
  position: relative;
}


.key-points-steo-no h3 {
  background-color: #1b5ca6;
  color: white;
  padding: 14px 22px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
  border: 3px solid #D4AF37; /* gold ring */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* soft glow */
}

.btn-default {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* spacing between text and arrow */
  background-color: #8B0000;
  color: white;
  padding: 14px 48px; /* increased padding */
  border-radius: 40px; /* slightly more rounded */
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  animation: pulse-grow 1.5s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-default:hover {
  background-color: #c1121f;
  transform: scale(1.05);
}

/* Glittering Effect */
.btn-default::after {
  content: "";
  position: absolute;
  top: -75%;
  left: -150%;
  width: 100%;
  height: 250%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: glitter-left-to-right 1.6s infinite, pulse-opacity 2s infinite;
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 2;
}

/* Pulse Animation */
@keyframes pulse-grow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.4);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 0 16px rgba(139, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 0, 0, 0);
  }
}

/* Glitter Keyframes */
@keyframes glitter-left-to-right {
  0% { left: -150%; }
  100% { left: 100%; }
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

.testimonial-button-prev,
.testimonial-button-next {
  background-color: #1b5ca6 !important;
  color: #ffffff !important;
  font-weight: bold !important;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  transition: background-color 0.3s ease-in-out;
  border: none;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  background-color: #151d44 !important;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before,
.video-testimonial-slider .vid-testimonial-button-next::before,
.video-testimonial-slider .vid-testimonial-button-prev::before {
  content: none !important;
  display: none !important;
}

.product-slider .product-button-next::before,
.product-slider .product-button-prev::before {
  content: none !important;
  display: none !important;
}

body, html {
  margin: 0;
  padding: 0;
}

.modern-faq-belt {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* neutralizes container centering */
  background-color: #151d44;
  color: #ffffff;
  padding: 16px 10px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 70px;
}

.modern-faq-belt h2 {
  margin: 0;
  color: white;
}

.modern-faq-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  border: none;
}

.modern-faq-question {
  background-color: #151d44;
  color: #ffffff;
  font-weight: 700;
  padding: 16px 24px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modern-faq-question:hover {
  background-color: #1c265a;
}

.faq-icon {
  font-size: 20px;
  width: 24px;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease;
}

.modern-faq-answer {
  background-color: #e2efca;
  padding: 20px 24px;
  display: none;
  font-size: 20px;
  color: #151d44;
  line-height: 1.6;
  text-align: left; /* ✅ Force left alignment */
}


/* Open State */
.modern-faq-item.active .modern-faq-answer {
  display: block;
}

.modern-faq-item.active .faq-icon {
  content: "–";
  transform: rotate(180deg);
}

.faq-toggle-icon {
  margin-right: 15px;
  font-weight: bold;
  font-size: 32px;
}

/* Desktop Styles */
.faq-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.faq-subtext {
  font-size: 28px;
  font-weight: 800;
  color: #151d44;
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 22px !important;
    line-height: 1.2;
    padding: 0px 12px;
    text-align: center;
  }

  .faq-subtext {
    font-size: 16px !important;
    padding: 0 16px;
    line-height: 1.6;
    text-align: center;
  }

  .modern-faq-question {
    font-size: 15px;
    padding: 12px 16px;
    text-align: left;
  }

  .faq-toggle-icon {
    font-size: 22px;
    margin-right: 12px;
  }

  .modern-faq-answer {
    font-size: 16px;
    padding: 16px 20px;
    line-height: 1.6;
  }
}

.product-belt {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* neutralizes container centering */
  background-color: #151d44;
  color: #ffffff;
  padding: 16px 10px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 40px;
}

.product-belt h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.product-belt h2 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-belt h3 {
    font-size: 16px;
  }

  .product-belt h2 {
    font-size: 26px;
  }
}

.product-belt-section h3 {
  color: #ffffff !important;
  border-left: 4px solid #ffffff !important;
}

.survey-belt-heading {
  width: 100vw;
  margin: 0;
  padding: 16px 10px;
  background-color: #151d44;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.survey-belt-heading .faq-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .survey-belt-heading .faq-title {
    font-size: 18px;
    padding: 0 10px;
    white-space: nowrap;
    text-align: center;
  }
}

#salesFloatBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #151d44;
    color: #ffffff;
    padding: 12px 20px;
    font-family: 'Arial', sans-serif;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
  }

  .sales-float-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .float-left,
  .float-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .float-left {
    font-weight: bold;
  }

  .float-left .timer-label {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .float-left .timer {
    font-size: 20px;
    font-weight: bold;
    color: #f3ff00;
  }

  .float-right {
    text-align: right;
    align-items: flex-end;
  }

  .float-right .free-text {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 4px;
  }

  .float-right .cta-message {
    background: #c1121f;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 4px;
    user-select: none;
    pointer-events: none;
  }

  .float-right .limit-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
  }

  @media (max-width: 768px) {
  .sales-float-content {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 6px 12px !important;
  }

  .float-left,
  .float-right {
    width: auto !important;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  .float-left .timer-label {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .float-left .timer {
    font-size: 14px;
    font-weight: bold;
    color: #f3ff00;
  }

  .float-right .free-text,
  .float-right .limit-text {
    font-size: 10px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
  }

  .float-right .cta-message {
    font-size: 13px;
    padding: 4px 12px;
    margin-left: 8px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: none;
  }
}

.cta-message {
  background: #c1121f;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px;
  user-select: none;
  pointer-events: none; /* Unclickable */
  animation: subtleBounce 2.5s infinite ease-in-out;
  box-shadow: 0 4px 16px rgba(193, 18, 31, 0.3);
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

/* Subtle professional bounce animation */
@keyframes subtleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(2px);
  }
}

.fresh-timer-container,
.dang-clock-fresh-timer-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.fresh-timer-block {
  background-color: #111111;
  padding: 24px 32px;
  border-radius: 14px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fresh-timer-number {
  font-size: 64px;
  font-weight: 800;
  color: #f0ff00;
  font-family: 'Arial', sans-serif;
  line-height: 1.2;
}

.fresh-timer-label {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .fresh-timer-box,
  .dang-clock-fresh-timer-box {
    padding: 10px 16px;
    margin-bottom: 0;
  }

  .fresh-timer-box h3,
  .dang-clock-fresh-timer-box h3 {
    text-align: left;
    font-size: 32px !important;
    font-weight: 800;
    color: #151d44;
    margin-bottom: 12px;
  }

  .fresh-timer-container,
  .dang-clock-fresh-timer-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding-left: 0;
    margin-left: 0;
  }

  .fresh-timer-block {
    background-color: #111;
    padding: 12px 10px;
    border-radius: 10px;
    width: 30%;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .fresh-timer-number {
    font-size: 34px;
    font-weight: bold;
    color: #f3ff00;
  }

  .fresh-timer-label {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
  }

  .stock-message {
    font-size: 22px !important;
    font-weight: 700;
    color: #151d44 !important;
    margin: 20px 0 0 16px;
    text-align: left;
    line-height: 1.6;
  }

  .fresh-timer-buy-btn {
    font-size: 16px;
    padding: 10px 22px;
    margin: 18px 0 0 16px;
    display: inline-block;
    width: auto;
  }
}

/* Desktop and general view */
#freshHours, #freshMinutes, #freshSeconds,
#dangFreshHours, #dangFreshMinutes, #dangFreshSeconds {
  animation: pulseTimer 1.5s infinite ease-in-out;
}

.fresh-timer-label {
  text-shadow: 0 0 6px rgba(255, 255, 0, 0.6);
}

@keyframes pulseTimer {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}

/* Mobile-specific adjustment */
@media (max-width: 768px) {
  #freshHours, #freshMinutes, #freshSeconds,
  #dangFreshHours, #dangFreshMinutes, #dangFreshSeconds {
    animation: pulseTimerMobile 1.2s infinite ease-in-out;
  }
}  

  @keyframes pulseTimerMobile {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.04); /* Slightly less zoom */
      opacity: 0.92;          /* Softer transition */
    }
  }
  
.survey-belt-heading {
  background-color: #151d44;
  padding: 15px 10px;
  text-align: center;
  border-top: 4px solid #f3ff00;
  border-bottom: 4px solid #f3ff00;
  margin: 40px 0 -10px;
}

.report-title {
  font-size: 34px; /* ✅ Proper desktop size */
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.highlight-glitter {
  color: #f3ff00;
  position: relative;
  display: inline-block;
  animation: shimmerGlow 2s infinite ease-in-out;
  font-weight: 800;
  text-shadow: 0 0 4px #f3ff00, 0 0 8px #f3ff00;
}

@keyframes shimmerGlow {
  0%, 100% {
    text-shadow: 0 0 6px #f3ff00, 0 0 10px #f3ff00;
  }
  50% {
    text-shadow: 0 0 14px #f3ff00, 0 0 30px #f3ff00;
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  .survey-belt-heading {
    padding: 10px 12px;
    margin: 20px 0 10px;
    text-align: center;
  }

  .report-title {
    font-size: 20px;
    font-weight: 700;
  }

  .highlight-glitter {
    font-size: 22px;
    animation: shimmerGlowMobile 1.6s infinite ease-in-out;
  }
}

@keyframes shimmerGlowMobile {
  0%, 100% {
    text-shadow: 0 0 6px #f3ff00, 0 0 12px #f3ff00;
  }
  50% {
    text-shadow: 0 0 18px #f3ff00, 0 0 36px #f3ff00;
  }
}

.warning-message {
  color: #151d44;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: -70px;
}

@media (max-width: 768px) {
  .warning-message {
    font-size: 17px;
    font-weight: bold;
    color: #151d44;
    text-align: center;
    margin-top: 0;
    margin-bottom: -40px; /* Reduced to fit mobile spacing */
    padding: 0 12px; /* Optional: adds side padding for narrow screens */
  }
}

/* Unique Napquina Logo Styling in Float Bar */
.napquina-float-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 80%);
  border-radius: 50px;
  animation: logoPulseFloatBar 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
}

.napquina-float-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Animation specific to float bar logo */
@keyframes logoPulseFloatBar {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  }
}

/* ✅ Mobile Support */
@media (max-width: 768px) {
  .napquina-float-logo {
    height: 28px;
  }

  .sales-float-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .napquina-float-logo-container {
    order: 2; /* Position between float-left and float-right if needed */
  }

  .float-left,
  .float-right {
    order: 1;
  }
}

.finger-down {
  font-size: 22px;
  text-align: center;
  margin-top: 4px;
  animation: bounceFinger 1.5s infinite;
  line-height: 1;
}

/* Bouncing finger animation */
@keyframes bounceFinger {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .finger-down {
    font-size: 18px;
    margin-top: 6px;
  }
}

.google-review-section {
  background-color: #202124;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  color: #e8eaed;
  margin-top: 0px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.review-card {
  background-color: #292a2d;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: 0.6s ease;
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #3c4043;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.review-header h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.review-header .meta {
  font-size: 13px;
  color: #9aa0a6;
}

.stars {
  color: gold;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}
.stars .time {
  color: #9aa0a6;
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
}

.review-title {
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
  text-align: left;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #e8eaed;
  text-align: left;
}

.highlight {
  background-color: #ffff0080;
  color: #000;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 500;
}

/* 🎯 Glow on anchor target */
.google-review-section:target {
  animation: glowFlash 1.8s ease-in-out forwards;
}
@keyframes glowFlash {
  0%   { box-shadow: 0 0 30px 8px rgba(255, 255, 0, 0.5); }
  50%  { box-shadow: 0 0 20px 5px rgba(255, 255, 0, 0.3); }
  100% { box-shadow: none; }
}

@media (max-width: 768px) {
  .google-review-section {
    padding: 40px 15px;
    margin-top: 60px;
  }
}  
  .review-card {
    padding: 16px;
    margin-top: 0 !important;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .review-header h4 {
    font-size: 15px;
  }

  .review-header .meta {
    font-size: 12px;
  }

  .stars {
    font-size: 20px;
  }

  .stars .time {
    font-size: 13px;
  }

  .review-title,
  .review-text {
    font-size: 14px;
  }

  .google-review-section:target {
    animation: glowFlashMobile 2s ease-in-out forwards;
  }

  @keyframes glowFlashMobile {
    0%   { box-shadow: 0 0 40px 12px rgba(255, 255, 0, 0.6); }
    100% { box-shadow: none; }
 }    

/* Review belt heading */
.greview-belt {
  background-color: #151d44;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 40px 0 0;
}
@media (max-width: 768px) {
  .greview-belt {
    font-size: 20px;
    padding: 14px 10px;
    line-height: 1.3;
    margin-bottom: 0; /* prevent unwanted space */
  }
}  
  
   .google-review-section {
    margin-top: 0;   /* prevent top gap */
    padding-top: 10px; /* or adjust as needed */
  }

  .review-grid,
  .google-review-box {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

/* Write review button */
.write-review-wrapper {
  text-align: center;
  margin-top: 40px;
}

.write-review-btn {
  background-color: #303134;
  color: #e8eaed;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: 1px solid #5f6368;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
  animation: pulse-jump 1.6s infinite ease-in-out;
}

.write-review-btn:hover {
  background-color: #3c4043;
  transform: translateY(-2px);
}

@keyframes pulse-jump {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  25% {
    transform: scale(1.1);
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .write-review-btn {
    animation: pulse-jump 2s infinite ease-in-out;
  }
}