.pink-btn {
  background-color: #cf3da6;
  border-radius: 30px;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #cf3da6;
}
.pink {
  color: #cf3da6;
}
.pink-text {
  color: #cf3da6;
  font-weight: 600;
}
.pink-btn:hover {
  border: 2px solid #cf3da6;
  color: #fff !important;
  background-color: #b8297e;
}
.header .navbar-nav .nav-link:hover {
  color: #cf3da6 !important;
}
.flex-container {
  display: flex;
}
h1 {
  color: #1b1a1a;
  font-size: 48px;
  line-height: 58px;
}

h2 {
  color: #1b1a1a;
  font-size: 34px;
  line-height: 44px;
}
p {
  color: #787878;
}
.mt-8 {
  margin-top: 40px;
}
.mt-9 {
  margin-top: 45px;
}
.pink-heading {
  color: #cf3da6;
}
.purple-heading {
  color: #8e36cf;
}
.common-bg {
  background: #f9f8fe;
}
.navbar .pink-btn {
  color: #fff !important;
  padding: 10px 22px !important;
}

.voucher-banner {
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.voucher-pill {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 0; /* ⬅ taller pill */
  max-width: 1400px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.voucher-pill p {
  margin: 0; /* 🔑 this is the main fix */
  font-size: 20px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 1;
  display: flex;
  align-items: center;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: fit-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

.sparkle {
  color: #ff5b8d;
  font-size: 18px;
}

.official-voucher-section {
  background: #f8f9fb;
}

/* Ticket Container */
.voucher-ticket {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Left Panel */
.voucher-left {
  background: #8e3bd6;
  color: #ffffff;
  padding: 60px 50px;
  width: 340px;
  position: relative;
  border-radius: 36px 0 0 36px;
}

.voucher-left h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 2px;
  color: #ffffff;
  font-family: "inter", sans-serif;
}

.voucher-left .divider {
  width: 85%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 35px 0;
}

.know-more-btn {
  background: #ffffff;
  color: #d84bb8;
  border-radius: 12px;
  padding: 10px 24px;
  font-weight: 600;
  width: fit-content;
}

/* Perforation */
.voucher-perforation {
  width: 48px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.voucher-perforation span {
  width: 7px;
  height: 22px;
  background: #e358bb;
  border-radius: 4px;
}

/* Right Panel */
.voucher-right {
  flex: 1;
  background: linear-gradient(135deg, #d84bb8, #c04cc8);
  color: #ffffff;
  padding: 60px 70px;
  border-radius: 0 36px 36px 0;
}

.voucher-right h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 22px;
}

.voucher-right p {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.95;
  color: white;
}

/* Ticket Cut Curves */
.voucher-left::after,
.voucher-right::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.voucher-left::after {
  right: -35px;
}

.voucher-right::before {
  left: -35px;
}

/* Bottom Content */
.voucher-bottom-content {
  margin-top: 80px;
}

.voucher-bottom-content h1 {
  font-size: 56px;
  font-family: "inter", sans-serif;
  font-weight: 500;
  line-height: 1.15;
  color: #1f2933;
}

.voucher-bottom-content h1 span {
  color: #d84bb8;
  font-family: "inter", sans-serif;
  font-weight: 500;
}

.voucher-features {
  margin-top: 25px;
  font-size: 16px;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.voucher-features span {
  margin: 0 8px;
  color: #cbd5e1;
}

.voucher-features strong {
  font-weight: 600;
  color: #1f2933;
}

/* Responsive */
@media (max-width: 768px) {
  .voucher-ticket {
    flex-direction: column;
  }

  .voucher-left,
  .voucher-right {
    width: 100%;
    border-radius: 24px;
  }

  .voucher-bottom-content h1 {
    font-size: 36px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .voucher-ticket {
    flex-direction: column;
  }

  .voucher-left,
  .voucher-right {
    width: 100%;
    border-radius: 20px;
  }

  .voucher-perforation {
    flex-direction: row;
    width: 100%;
    height: 30px;
  }
}

.features-section {
  padding: 24px 24px;
  background: #f8fafc; /* light page background */
}

.features-outer {
  max-width: 1320px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 64px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: linear-gradient(135deg, #eeeafe, #fff, #d8f7ee);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: #e3f8fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 26px;
  color: #cf3da6;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

.authenticity-section {
  padding: 24px 24px;
  background: #f8fafc; /* page background */
}

.authenticity-outer {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 64px 56px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.authenticity-container {
  max-width: 1300px;
  margin: 0 auto;
}

.authenticity-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.authenticity-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 12px;
}

.authenticity-header p {
  font-size: 18px;
  color: #7a8ca5;
  line-height: 1.6;
}

/* Certificates Grid */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.certificate-card {
  background: #ffffff;
  /*border: 6px solid #cf3da6;*/
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .authenticity-header h2 {
    font-size: 28px;
  }
}
.products-section {
  padding: 24px 24px;
  background: #f8fafc;
}

.products-outer {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 64px 56px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.products-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.products-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 12px;
}

.products-header p {
  font-size: 18px;
  color: #7a8ca5;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.product-card {
  background: #ffffff;
  border: 1px solid #e6eef7;
  border-radius: 20px;
  padding: 22px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-image {
  background: #ffffff;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #eef3f8;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text */
.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2d3d;
  margin-bottom: 14px;
}

/* Buy link */
.buy-link {
  font-size: 16px;
  font-weight: 600;
  color: #cf3da6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.buy-link span {
  transition: transform 0.2s ease;
}

.buy-link:hover span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-header h2 {
    font-size: 28px;
  }
}
.examism-section {
  padding: 24px 24px;
  background: #f8fafc; /* page background */
  font-family: system-ui, sans-serif;
}

.examism-outer {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.container {
  max-width: 1100px;
  margin: auto;
}

.examism-section h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #0b1f33;
}

.subtitle {
  color: #6b7c93;
  max-width: 700px;
  margin-bottom: 50px;
}

.comparison-box {
  display: flex;
  gap: 20px;
}

/* LEFT PURPLE COLUMN */

.feature-column {
  background: #8e36cf;
  color: white;
  width: 280px;
  border-radius: 18px;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
}

.feature {
  padding: 22px 30px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.feature:first-child {
  font-size: 20px;
}

.feature:last-child {
  border-bottom: none;
}

/* RIGHT PINK AREA */

.details-column {
  flex: 1;
  background: #d043a7;
  color: white;
  border-radius: 18px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}

.roww {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

.roww:last-child {
  border-bottom: none;
}

.roww div {
  font-weight: 600;
}

/* Header row */

/* Header row: ensure the two header cells sit side-by-side in the details column */
.details-column .row.header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.details-column .row.header div {
  font-size: 20px;
  font-weight: 700;
}

/* On narrow screens, revert to stacked layout for readability */
@media (max-width: 900px) {
  .details-column .row.header {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
}

/* Connector bars */

.row::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 14px;
  background: white;
  border-radius: 4px;
}

/* Responsive */

@media (max-width: 900px) {
  .comparison-box {
    flex-direction: column;
  }

  .feature-column {
    width: 100%;
  }

  .row::before {
    display: none;
  }
}

.trust-section {
  padding: 24px 24px;
  background: #f8fafc;
}

.trust-outer {
  max-width: 1400px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.trust-header h2 {
  font-size: 34px;
  color: #0b1f33;
  margin-bottom: 10px;
}

.trust-header p {
  color: #6b7c93;
  margin-bottom: 20px;
}

.trust-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #8e3ee0;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.trust-icon i {
  font-size: 32px;
  color: #cf3da6;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #cf3da6;
  color: #fff;
  width: 22px;
  height: 22px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1f2d3d;
}

.trust-card p {
  color: #6b7c93;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-steps {
    grid-template-columns: 1fr;
  }
}

.video-section {
  padding: 40px 24px 90px;
  background: #f8fafc;
}

.video-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.video-icon {
  width: 70px;
  height: 70px;
  background: #cf3da6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Make sure the play button inside video-card is a perfect circle and not stretched */
.video-card .video-icon {
  min-width: 70px;
  min-height: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* Reduce vertical spacing between main sections to be more compact */
section {
  padding-top: 24px; /* was 48px */
  padding-bottom: 24px;
}

/* Slightly reduce inner paddings for large content blocks to tighten look */
.features-outer,
.authenticity-outer,
.products-outer,
.examism-outer,
.trust-outer,
.testimonials-outer,
.faq-outer,
.contact-card,
.voucher-pill {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Make the difference between sections subtle */
.features-section,
.authenticity-section,
.products-section,
.examism-section,
.trust-section,
.video-section,
.testimonials-section,
.faq-section,
.contact-section {
  margin-top: 0;
}

.video-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #0b1f33;
}

.video-content p {
  color: #6b7c93;
  margin-bottom: 10px;
}

.video-link {
  color: #cf3da6;
  font-weight: 600;
  text-decoration: none;
}

.video-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  .video-card {
    flex-direction: column;
    text-align: center;
  }
}
.testimonials-section {
  padding: 24px 24px;
  background: #f8fafc;
}

.testimonials-outer {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  max-width: 1400px;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.testimonials-header h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.testimonials-header p {
  color: #6b7c93;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.testimonial-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.play-btn {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.play-btn i {
  color: #111;
}

.testimonial-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
}

.testimonial-card:not(.dark) .testimonial-info {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.testimonial-info span {
  display: block;
  font-size: 13px;
  opacity: 0.8;
}

.view-more-btn {
  margin: 40px auto 0;
  display: block;
  background: #cf3da6;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
}
.faq-section {
  padding: 90px 24px;
  background: #f8fafc;
}

.faq-outer {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  max-width: 1400px;
  margin: auto;
}

.faq-header h2 {
  font-size: 30px;
}

.faq-header p {
  color: #6b7c93;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #eef2f6;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  color: #6b7c93;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta {
  margin-top: 20px;
  background: #f5f7fb;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
}

.load-more {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #eef2f6;
  background: #fff;
  cursor: pointer;
}

.card-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
}

.banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.banner h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #1b1a1a;
}
.banner h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 20px;
  font-weight: 600;
}
.banner p {
  font-size: 15px;
  line-height: 26px;
  margin-top: 0;
  color: #666;
}
.banner .pink-btn {
/*   margin-top: 24px; */
  padding: 13px 28px;
  font-size: 15px;
  color: #fff !important;
  border-radius: 24px;
}
.banner .pink-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
}
.banner .pink-btn .bi-arrow-right-circle-fill {
  padding-right: 6px;
}
.logo-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.logo-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.logo-section ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 -2px;
}
.logo-section h2 {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.logo-section .bi-heart-fill {
  color: #ff7279;
}
.logo-holder ul li {
  margin-left: 30px;
}
.header {
  position: relative;
  padding: 15px 0;
}
.header::before {
  position: absolute;
  width: 200px;
  height: 200px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(190, 70, 255, 0.9),
    rgba(150, 50, 200, 0.6),
    rgba(100, 30, 150, 0.3)
  );
  border-radius: 50%;
  -webkit-box-shadow: 0 0 40px 20px rgba(200, 50, 255, 0.7);
  -moz-box-shadow: 0 0 80px 40px rgba(180, 50, 255, 0.5);
  box-shadow: 0 0 120px 60px rgba(150, 50, 255, 0.3);
  filter: blur(100px);
  right: 0%;
  top: 0;
  z-index: -1;
}
.header nav {
  padding: 0;
}
.header .navbar-nav .nav-link {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.header .navbar-nav .nav-item {
  margin: 0 8px;
}
.header .navbar-nav .nav-link.active {
  color: #cf3da6;
}
.header .container {
  -webkit-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: 50px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
  background: #ffffff;
}
/* Remove border, outline, and focus glow from hamburger menu */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0.25rem 0.5rem;
}

/* Also remove the blue outline when clicked/focused */
.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.voucharse-section {
  position: relative;
  padding: 70px 0;
}
.voucharse-section .flex-container .icon {
  margin-right: 15px;
}
.voucharse-section .flex-container .text h3 {
  font-size: 16px;
  font-weight: 600;
}
.voucharse-section .flex-container .text p {
  font-size: 14px;
  margin-bottom: 0;
}
.voucharse-section .container {
  padding: 25px 15px;
  -webkit-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ffffff;
  z-index: 2;
}
.voucharse-section::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/eclipse-vouchers.svg);
  content: "";
  width: 35%;
  height: 255px;
}

.voucharse-section.glowing-ellipse::after {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(190, 70, 255, 0.9),
    rgba(150, 50, 200, 0.6),
    rgba(100, 30, 150, 0.3)
  );
  border-radius: 50%;
  -webkit-box-shadow: 0 0 40px 20px rgba(200, 50, 255, 0.7);
  -moz-box-shadow: 0 0 80px 40px rgba(180, 50, 255, 0.5);
  box-shadow: 0 0 120px 60px rgba(150, 50, 255, 0.3);
  filter: blur(100px);
  left: 10%;
  top: -15px;
  z-index: -1;
}
.download-section {
  background: #f9f8fe;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.small-heading {
  color: #1e272f;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.big-heading {
  position: relative;
  font-size: 48px;
  line-height: 58px;
  max-width: 50%;
  margin: 0 auto;
}
.big-heading::before {
  background: #8e36cf;
  height: 8px;
  width: 40px;
  position: absolute;
  left: 10%;
  top: 50%;
  content: "";
  border-radius: 8px;
}
.big-heading::after {
  background: #8e36cf;
  height: 8px;
  width: 40px;
  position: absolute;
  right: 10%;
  top: 50%;
  content: "";
  border-radius: 8px;
}
.download-section::before {
  position: absolute;
  top: 180px;
  left: 0;
  background: url(../images/dots-left.svg);
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  width: 128px;
  height: 560px;
}

.side-heading {
  font-size: 42px;
  line-height: 66px;
}
.side-small-heading {
  font-size: 18px;
  line-height: 32px;
  color: #1e272f;
}
.our-feature-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.our-feature-section h3 {
  font-size: 20px;
  color: #1e272f;
  line-height: 30px;
}
.our-feature-section p {
  font-size: 16px;
  color: #1e272f;
  line-height: 26px;
}
.our-feature-section .left-side {
  text-align: right;
}
.our-feature-section .icon {
  flex-basis: 20%;
}
.our-feature-section .text {
  flex-basis: 80%;
}
.our-feature-section .flex-container {
  margin-top: 45px;
}

/* ---------------------------------- */
/* Contact Us Section */
/* ---------------------------------- */
.contact-section {
  padding: 0px 0 0; /* merges smoothly into footer */
  background: #f9f9ff;
  padding-bottom: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-subtitle {
  color: #6c757d;
  margin-bottom: 30px;
}

.contact-section label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #eee;
}

.contact-btn {
  background: #cf3da6;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(207, 61, 166, 0.35);
}

/* Right Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 30px;
}

.info-box {
  background: linear-gradient(135deg, #f8d6e8, #ffe3f3);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.info-box .info-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.info-box .info-icon i {
  font-size: 24px;
  color: #cf3da6;
}

.info-box .info-text {
  text-align: center;
}

.info-box .info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1b1a1a;
  margin-bottom: 4px;
}

.info-box p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cf3da6;
  font-size: 14px;
}

.social-text {
  font-size: 13px;
  color: #666;
}

/* Mobile */
@media (max-width: 991px) {
  .contact-card {
    padding: 30px;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* ---------------------------------- */
/* Footer Styles */
/* ---------------------------------- */
.custom-footer {
  background-color: #ffffff; /* Matching body background */
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: 60px; /* Space above footer */
  border-top: 1px solid #eee; /* Optional separator line */
}

.footer-heading {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #cf3da6;
}

/* Social Icons and Subscription */
.social-icon-btn {
  background-color: #8236c8;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: opacity 0.2s;
  border: none;
  text-decoration: none;
}

.social-icon-btn:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

.subscribe-input {
  border-radius: 8px 0 0 8px; /* Rounded left only */
  border-right: none;
  height: 40px;
}

.subscribe-btn {
  background-color: #8236c8; /* Specific purple color */
  border-color: #8236c8;
  border-radius: 0 8px 8px 0; /* Rounded right only */
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background-color: #6a2a9e; /* Darker purple on hover */
  border-color: #6a2a9e;
}

/* App Store Images (Placeholder alignment) */
.app-link img {
  max-width: 150px;
  margin-bottom: 10px;
}

/* ---------------------------------- */
/* Mobile Footer Layout */
/* ---------------------------------- */
@media (max-width: 768px) {
  .custom-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  /* About Us & Product side by side or stacked */
  .col-6.col-md-3 {
    text-align: center;
    margin-bottom: 20px;
  }

  /* App store buttons in one row centered */
  .col-6.col-md-3:nth-child(3) {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .app-link img {
    max-width: 120px;
    margin: 0;
  }

  /* Subscription input + button in one row */
  .col-6.col-md-3:nth-child(4) .input-group {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 5px;
    margin-bottom: 15px;
  }

  .subscribe-input {
    flex: 1;
    min-width: 0;
    border-radius: 8px 0 0 8px;
    border-right: none;
    height: 40px;
  }

  .subscribe-btn {
    border-radius: 0 8px 8px 0;
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Social icons in one row */
  .col-6.col-md-3:nth-child(4) .social-icon-btn {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .app-link img {
    max-width: 100px;
  }

  .social-icon-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .subscribe-input,
  .subscribe-btn {
    height: 35px;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .custom-navbar-wrapper {
    min-height: auto;
    border-radius: 15px;
    padding: 0 15px;
  }
  .navbar-collapse {
    background-color: #fff;
    margin: 0 -15px;
    padding: 10px 15px;
    border-top: 1px solid #eee;
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  .signup-link,
  .agent-btn {
    margin: 0.5rem 0;
  }
  /* New content responsiveness */
  .voucher-card {
    max-width: 100%;
    height: auto;
  }
  .card-btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
  }
  /* Footer adjustments for mobile */
  .custom-footer .row > div {
    margin-bottom: 30px;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
  }
}
.white-icon {
  color: #fff;
}

/* ---------------------------------- */
/* Responsive Footer - Fully Fixed */
/* ---------------------------------- */
@media (max-width: 768px) {
  .custom-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  /* Force all footer sections to stack vertically */
  .custom-footer .row.justify-content-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Make each section full width */
  .custom-footer .col-6.col-md-3,
  .custom-footer .footer-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  /* App links side by side */
  .custom-footer .app-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  .custom-footer .app-links img {
    max-width: 130px !important;
  }

  /* Widen email input on mobile */
  .custom-footer .subscribe-col .input-group {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    width: 95% !important; /* widen input on mobile */
    max-width: 450px !important; /* limit so it doesn’t overflow */
    margin: 0 auto 20px auto !important;
    gap: 6px !important;
  }

  .custom-footer .subscribe-input {
    flex: 1 !important;
    height: 46px !important;
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
    font-size: 0.95rem !important;
    padding: 0 10px !important;
  }

  .custom-footer .subscribe-btn {
    height: 46px !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 0 18px !important;
  }

  /* Keep social icons in a single horizontal line */
  .custom-footer .social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important; /* no wrapping */
    gap: 14px !important;
    width: 100% !important;
    overflow-x: auto; /* safety if screen too small */
  }

  .custom-footer .social-icon-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    flex: 0 0 auto !important;
  }

  /* Center copyright */
  .custom-footer .footer-copyright {
    text-align: center !important;
    margin-top: 15px !important;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  .custom-footer .app-links img {
    max-width: 110px !important;
  }

  .custom-footer .subscribe-col .input-group {
    width: 100% !important;
    max-width: 480px !important;
  }

  .custom-footer .subscribe-input,
  .custom-footer .subscribe-btn {
    height: 42px !important;
  }

  .custom-footer .social-icon-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }
}

/* --- Microanimations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDelay {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

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

/* --- Animation Classes --- */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeInDelay 1.2s ease forwards;
}

.animate-slide-left {
  animation: slideLeft 1s ease forwards;
}

.animate-pop {
  display: inline-block;
  animation: pop 1.1s ease forwards;
  transition: transform 0.2s ease;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* --- Hover interactions --- */
.pink-btn:hover {
  transform: scale(1.05);
}

.pink-btn i {
  transition: transform 0.3s ease;
  z-index: 100;
}

.pink-btn:hover i {
  transform: translateX(4px);
}

/* --- Base Animations --- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* --- Animation Classes --- */
.animate-up {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.animate-float {
  animation: floatSlow 4s ease-in-out infinite;
}

/* --- Staggered Delay for Sequential Reveal --- */
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

/* --- Section Styling Tweaks --- */
.voucharse-section .flex-container {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.voucharse-section .flex-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --- Base Animations --- */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseHeart {
  0%,
  100% {
    transform: scale(1);
    color: #ff5b8d;
  }
  50% {
    transform: scale(1.2);
    color: #ff8cb3;
  }
}

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

/* --- Animation Classes --- */
.animate-fade-down {
  opacity: 0;
  animation: fadeDown 1s ease forwards;
}

.animate-pulse {
  display: inline-block;
  animation: pulseHeart 1.8s ease-in-out infinite;
}

@media (max-width: 576px) {
  .bi-heart-fill {
    font-size: 0.95rem; /* smaller size for mobile */
  }
}
.animate-logo {
  opacity: 0;
  animation: fadeUpLogo 0.8s ease forwards;
}

/* --- Sequential Delay --- */
.delay-0 {
  animation-delay: 0.2s;
}
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.5s;
}
.delay-4 {
  animation-delay: 0.6s;
}
.delay-5 {
  animation-delay: 0.7s;
}
.delay-6 {
  animation-delay: 0.8s;
}
.delay-7 {
  animation-delay: 0.9s;
}

/* --- Layout + Hover Effects --- */
.logo-holder ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.logo-holder li {
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.logo-holder li:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.logo-section h2 {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  color: #222;
  text-transform: uppercase;
}

.logo-section {
  padding: 80px 0;
  background: #fafafa;
  overflow: hidden;
}

/* Floating image animation */
.floating {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Wobble for icons */
.wobble {
  animation: wobble 2.5s infinite ease-in-out;
}
@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

/* Gentle pulse for icons */
.pulse img {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

/* Float-up effect */
.float-up {
  animation: floatUp 4s ease-in-out infinite;
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hover bounce for buttons */
.hover-bounce:hover {
  transform: translateY(-4px) scale(1.02);
  transition: all 0.3s ease;
}

/* Hover lift for reward cards */
.hover-lift {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 16); /* Adjust width based on logo count */
  animation: scroll 25s linear infinite;
}

.logo-list {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.logo-list li {
  list-style: none;
  flex: 0 0 auto;
}

.logo-list img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.logo-list img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: subtle fade on edges */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

/* Contact "Follow Us" — force icons in one row and tidy spacing */
.contact-form-footer .social-icon {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-form-footer .social-icon li {
  display: block;
  margin: 0;
}
.contact-form-footer .social-icon img,
.contact-form-footer .social-icon > li > a > img {
  width: 36px;
  height: auto;
  display: block;
}

/* Footer subscribe input — make it wider and responsive */
.custom-footer .input-group {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 520px; /* keeps a sensible max width on large screens */
  margin: 0;
}
.custom-footer .subscribe-input {
  flex: 1 1 auto;
  min-width: 0; /* prevents overflow in flex container */
}
.custom-footer .subscribe-btn {
  flex: 0 0 auto;
}

/* Contact-form (page) — ensure contact email/name inputs use full width on small screens */
@media (max-width: 991.98px) {
  .contact-form-footer .form-control {
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form-footer .flex-container.flex-wrap {
    gap: 12px;
  }
}

/* Slightly smaller icons on very small devices */
@media (max-width: 480px) {
  .contact-form-footer .social-icon img {
    width: 30px;
  }
  .custom-footer .input-group {
    max-width: 100%;
    padding: 0 12px;
  }
}

/* FORCE overrides for footer on mobile */
@media (max-width: 768px) {
  /* make footer columns stack and be full width */
  .custom-footer > .container > .row.justify-content-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .custom-footer > .container > .row.justify-content-center > .col-6.col-md-3 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 16px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* widen subscribe input & center the group */
  .custom-footer .subscribe-col .input-group {
    display: flex !important;
    width: 96% !important;
    max-width: 720px !important;
    margin: 0 auto 12px !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .custom-footer .subscribe-col .input-group .subscribe-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px 12px !important;
    height: 46px !important;
  }
  .custom-footer .subscribe-col .input-group .subscribe-btn {
    flex: 0 0 auto !important;
    height: 46px !important;
    padding: 0 14px !important;
  }

  /* force social icons into a single non-wrapping row */
  .custom-footer .social-icons-row,
  .custom-footer .social-icons {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    overflow-x: auto !important;
    padding: 6px 8px !important;
    width: 100% !important;
  }
  .custom-footer .social-icons-row .social-icon-btn,
  .custom-footer .social-icons .social-icon-btn {
    flex: 0 0 auto !important;
    margin: 0 6px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* extra safety: ensure desktop layout unchanged */
@media (min-width: 769px) {
  .custom-footer .subscribe-col .input-group {
    max-width: 520px;
  }
}

/* our-feature-section — smaller sizes and 2-per-row on mobile */
@media (max-width: 767.98px) {
  .our-feature-section .flex-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0px !important;
    margin-top: 20px !important;
    justify-content: center;
  }

  .our-feature-section .flex-container .flex-box {
    flex: 0 0 50% !important; /* two items per row */
    box-sizing: border-box !important;
    padding: 10px !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .our-feature-section .flex-box .icon {
    flex-basis: 100% !important;
    margin: 0 auto 8px !important;
  }

  .our-feature-section .flex-box .icon img,
  .our-feature-section .flex-container .icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px !important;
  }

  .our-feature-section .flex-box .text h3,
  .our-feature-section .flex-box h3 {
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 6px !important;
  }

  .our-feature-section .flex-box .text p,
  .our-feature-section .flex-box p {
    font-size: 13px !important;
    line-height: 18px !important;
    margin: 0 !important;
    color: #444 !important;
  }
}
