/* css/style.css */

/* Import Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1280px;  /* Or 1140px if you prefer tighter */
  margin: 0 auto;
  padding: 0 0rem;  /* Mobile spacing */
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem; /* More padding on tablets and up */
  }
}

/* Header + Navbar */
.top-header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 10px 30px; 
   position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 50px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 2px solid #ccc;
}

.menu li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.menu li a:hover {
  color: #44a2df;
}
.cta-button .voucher-btn {
  background-color: #ce286a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.cta-button .voucher-btn:hover {
  background-color: #44a2df;
}

/* Toggle and Mobile Adjustments */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.voucher-mobile{
    display:none;
}
/* Mobile Only */
@media (max-width: 768px) {
    
    .top-header {
 height: 70px;
}
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px 20px;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .menu.show {
    display: flex;
  }

  .voucher-mobile {
    display: block;
  }


.voucher-mobile .voucher-btn {
  background-color: #ce286a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s;
}
.voucher-mobile .voucher-btn :hover {
  background-color: #44a2df;
}

  .cta-button {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .voucher-mobile {
    order: 2;
    flex: 1;
    text-align: center;
  }

  .mobile-toggle {
    order: 3;
  }

  .logo {
    order: 1;
    margin-left:-10px;
  }
  
  /*.logo img{*/
      
  /*    width: 80px;*/
  /*    height: 40px;*/
  /*}*/
  
}

/* Hero section (optional welcome) */
.hero-section {
  text-align: center;
  padding: 100px 20px;
  background-color: #f2f4fa;
  height: 200vh;
}
.hero-section h1 {
  color: #22285a;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero-section p {
  font-size: 1.2rem;
  color: #555;
}


/* Voucher section */

.voucher-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #f5f7fb;
}

.voucher-card {
  display: flex;
  max-width: 1100px;
  width: 100%;
  min-height: 500px; /* Increased height */
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  margin-top: 50px;
}

/* Left side */
.voucher-left {
  flex: 1;
  padding: 50px; /* Increased padding */
  line-height: 1.8; /* Increased line spacing */
}

.voucher-left .voucher-paragraph{
    margin-top: -30px;
    line-height: 1.5em;
    font-weight: normal;
}
 
.voucher-tag {
  display: inline-block;
  background-color: #44a2df;
  color: #fff;
  font-size: 20px; /* Bigger */
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  
}

.voucher-left h2 {
  font-size: 32px; /* Bigger */
  color: #22285a;
  margin-bottom: 25px;
  margin-top: -20px;
}

.pricing p {
  font-size: 40px; /* Bigger */
  /*margin: 4px 0; */
  color: #ce286a;

}

  
.actualPrice{
    margin-top:-18px;
    font-weight: 500;
}
.pricing s {
  color: #999;
   font-size: 20px;
   /*margin-bottom: -100px;*/
   font-weight: 500;
   margin-top: -20px;
}
.pricing .save {
  color: #44a2df;
  font-weight: bold;
  font-size: 20px;
  margin-top: -10px;
  
}

.voucher-benefits {
  margin: 20px 0;
  padding-left: 0; /* remove native indentation */
}

.voucher-benefits li {
  position: relative;
  list-style: none; /* remove bullets */
  padding-left: 40px; /* space for icon */
  margin-bottom: 12px;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

/* Custom circle with checkmark */
.voucher-benefits li::before {
  content: '✓'; /* Good sign */
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background-color: #e1f3fb; /* lighter circle bg */
  color: #44a2df; /* checkmark color */
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-family: Arial, sans-serif;
}


.voucher-claim-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #ce286a;
  color: white;
  padding: 14px 30px; /* Bigger button */
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.voucher-claim-btn:hover {
  background-color: #44a2df;
}

/* Right side */
.voucher-right {
  flex: 1;
  background-color: #22285a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.voucher-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #44a2df;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 70px; /* Makes the text vertically centered */
  transform: rotate(-10deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .voucher-card {
    flex-direction: column;
    min-height: auto;
  }

  .voucher-left,
  .voucher-right {
    flex: 100%;
    padding: 30px 20px;
  }

  .voucher-left {
    padding: 40px 20px;
    text-align: left; /* aligned to left on mobile */
  }

  .voucher-left h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

.actualPrice{
    margin-top:-28px;
    font-weight: 500;
    margin-bottom:-10px;
}
  .voucher-tag {
    font-size: 16px;
    padding: 5px 12px;
    margin-bottom: 25px;
  }

  .pricing p {
    font-size: 28px;
  }

  .pricing s {
    font-size: 20px;
  }

  .pricing .save {
    font-size: 16px;
  }

  .voucher-benefits li {
    font-size: 15px;
    padding-left: 35px;
  }

  .voucher-benefits li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .voucher-claim-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .badge {
    width: 60px;
    height: 60px;
    font-size: 14px;
    padding-top: 15px;
  }
}


/*Vouvher availability*/

.voucher-availability {
  width: 100%;
  height: 40vh;
  background: linear-gradient(to right, #22285a, #44a2df);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.voucher-availability-content {
  color: white;
  padding: 20px;
}

.voucher-availability-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.voucher-availability-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .voucher-availability {
    height: auto;
    padding: 40px 20px;
  }

  .voucher-availability-content h2 {
    font-size: 22px;
  }

  .voucher-availability-content p {
    font-size: 16px;
  }
  .intro-title {
  font-size: 18px;
  font-weight: 500;
  color: #22285a;
  margin-bottom: 10px;
  margin-top: 40px;
}
}

.hidden {
  display: none !important;
}

.voucher-card .questionnaire-content {
  max-width: 700px;
  margin: 0 auto;
}



.progress-bar {
  height: 6px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px auto;
  max-width: 500px;
}

.progress-fill {
  height: 100%;
  background: #44a2df;
  transition: width 0.3s ease;
}

.question-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #222;
}

.question-box .option {
  border: 1px solid #ccc;
  padding: 14px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}

.question-box .option:hover {
  border-color: #44a2df;
  background: #f0faff;
}

.back-btn {
  background: none;
  border: none;
  color: #44a2df;
  font-size: 16px;
  cursor: pointer;
}
/* Center Intro Text in Questionnaire */
.intro-text {
  text-align: center;
  margin-bottom: 30px;
}



.intro-sub {
  font-size: 16px;
  color: #333;
  /*margin-bottom: 5px;*/
}

.intro-desc {
  font-size: 15px;
  color: #444;
}

/* Progress Bar */
.progress-bar {
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
}

.progress-fill {
  height: 100%;
  background: #44a2df;
  width: 0%;
  transition: width 0.4s ease-in-out;
}

/* Question Box */
.question-box {
  text-align: center;
}

.question-title {
  font-size: 20px;
  color: #22285a;
  margin-bottom: 20px;
}

.option {
  display: block;
  background: #f4f4f4;
  border: 1px solid #ccc;
  padding: 12px 18px;
  margin: 8px auto;
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.intro-title {
  font-size: 24px;
  font-weight: 700;
  color: #22285a;
  margin-bottom: 10px;
}

.option:hover {
  background: #e6f4fb;
}

/* Back Button */
.back-btn {
  background: #444;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.voucher-questionnaire {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 20vh;
  padding: 20px 0;
  margin-top: 30;
}
/* Card inside the questionnaire */
.questionnaire-card {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  /*height: 50px;*/
}


/* Intro text */
.intro-text {
  text-align: left;
  margin-bottom: 30px;
}

.intro-sub {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.intro-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: -50px;
}

/* Progress bar */
.progress-bar {
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
}
.progress-fill {
  height: 100%;
  background: #44a2df;
  width: 0%;
  transition: width 0.4s ease-in-out;
}

/* Question Box */
.question-box {
  text-align: left;
}

.question-title {
  font-size: 20px;
  color: #22285a;
  margin-bottom: 20px;
}

/* Answer Options - left aligned and transparent */
.option {
  display: block;
  border: none;
  padding: 12px 0;
  margin-bottom: 12px;
  width: 100%;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  color: #22285a;
}
.option:hover {
  color: #44a2df;
}

/* Back Button */
.back-btn {
  background: #444;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  top: 100px;
}

.hidden {
  display: none !important;
}

.centered-intro {
  text-align: center;
  margin-bottom: 30px;
}


/* --- Force height to wrap question content tightly --- */
.questionnaire-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto; /* make height flexible */
}

/* Ensure the back button always stays at bottom left on desktop */
@media (min-width: 768px) {
  .questionnaire-card {
    position: relative;
    padding-bottom: 60px; /* space for button */
  }

  .questionnaire-card .text-left {
    position: absolute;
    bottom: 20px;
    left: 30px;
  }
}

.age-btn {
  border: 2px solid #22285a !important;
  background-color: #fff !important;
  color: #22285a !important;
  font-weight: 500;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.age-btn:hover {
  background-color: #f4f4f4 !important;
}

.age-btn.selected {
  background-color: #ce286a !important;
  color: #fff !important;
  border-color: #ce286a !important;
}



/* Eye love section */

.eye-love-section {
  width: 100%;
  height: 100vh;
  background-color: #fff9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.eye-love-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* Badge */
/*.eye-love-content .discount-badge {*/
/*  display: inline-block;*/
/*  background-color: #fff;*/
/*  color: #22285a;*/
/*  font-size: 14px;*/
/*  font-weight: bold;*/
/*  padding: 8px 16px;*/
/*  border-radius: 20px;*/
/*  margin-bottom: 15px;*/
/*  text-transform: uppercase;*/
/*}*/

/* Small heading */
.eye-love-content .small-heading {
  font-size: 12px;
  color: #22285a;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main heading */
.eye-love-content h1 {
  font-size: 60px;
  color: #22285a;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Sub text */
.eye-love-content .sub-text {
  font-size: 28px;
  color: #22285a;
  line-height: 1.7;
  font-weight: 400;
}

/* Button */
.eye-love-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #ce286a;
  color: white;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.eye-love-btn:hover {
  background-color: #44a2df;
}

.eye-love-btn .arrow {
  margin-right: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .eye-love-section {
    height: auto;
    padding: 30px 20px 40px;
  }

  .eye-love-content .discount-badge {
    font-size: 15px;
    padding: 6px 14px;
    margin-bottom: 10px;
  }

  .eye-love-content .small-heading {
    font-size: 14px;
  }

  .eye-love-content h1 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .eye-love-content .sub-text {
    font-size: 17px;
  }

  .eye-love-btn {
    font-size: 16px;
    padding: 14px 26px;
  }
}

/*Stats Section*/

.stats-section {
  background-color: #44a2df;
  padding: 80px 30px;
  text-align: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  color: #333;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 300px;
  flex: 1 1 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 36px;
  color: #ce286a;
  margin-bottom: 10px;
}

.stat-percent {
  font-size: 26px;
  font-weight: bold;
  color: #ce286a;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* CTA button at bottom of section */
.stats-section-cta {
  margin-top: 60px;
}

.stats-btn {
  background-color: #ce286a;
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.stats-btn:hover {
  background-color: #22285a;
}

/* Stats Section Icon Color Override */
.stats-section svg {
  color: #ce286a !important;       /* Ensures fallback for text-colored icons */
  stroke: #ce286a !important;      /* Targets outlined icons */
  fill: none;                      /* Keeps icons outlined as per original SVGs */
}


/* Responsive */
@media (max-width: 768px) {
    
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Why Choose Section */
.why-choose-section {
  background-color: #fff;
  padding: 80px 30px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #22285a;
  margin-bottom: 50px;
  font-weight: 700;
}

.why-choose-container {
  display: flex;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Cards */
.why-choose-left {
  flex: 1;
  min-width: 300px;
}

.choose-card {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
  margin-bottom: 25px;
  align-items: flex-start;
  gap: 20px;
}

.card-icon {
  background-color: #ce286a;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  background-color: #44a2df;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  stroke: white;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
 
}



/* Responsive */
@media (max-width: 992px) {
  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .why-choose-right {
    grid-template-columns: 1fr;
  }
}

/* Image Box Styling (for both desktop and mobile) */
.why-choose-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}


/* Make images larger and full-width on mobile */
@media (max-width: 576px) {
  .why-choose-right {
    grid-template-columns: 1fr;
  }


}


/*Testimonials*/

/* Testimonial Section */
.testimonial-section {
  background-color: #eaf7fd; /* light version of #44a2df */
  padding: 80px 30px;
}

.testimonial-title {
  font-size: 36px;
  color: #22285a;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.swiper {
  max-width: 1300px;
  margin: auto;
  padding: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 18px;
  color: #22285a;
  font-weight: 600;
}

.testimonial-header span {
  font-size: 13px;
  color: #666;
  display: block;
}

.stars {
  font-size: 16px;
  color: #44a2df;
  margin-top: 4px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Swiper adjustments */
.swiper-slide {
  width: auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px;
  
}
.testimonial-section {
  padding: 40px 10px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 32px;
  height: 32px;
  padding: 8px;
  font-size: 16px;
  top: 10px;
  transform: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px !important;
}



.card-content h4 {
  font-size: 18px;
  color: #22285a;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Right Images */
.why-choose-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 300px;
}

.img-box {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.img-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-box:hover img {
  transform: scale(1.05);
}

}


/* Base arrow styles */
.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  background-color:white;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  padding: 10px;
  opacity: 0.8;
  top: 50%; /* center vertically by default */
  transform: translateY(-50%);
  z-index: 10;
}

/* Arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
}

/* Position arrows farther outside the slider on desktop */
.swiper-button-prev {
  left: -50px;
}

.swiper-button-next {
  right: -50px;
}

/* Adjustments for mobile */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 24px;
    height: 24px;
    padding: 6px;
    font-size: 12px;
    top: 2px; /* bring up near image */
    transform: none;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 12px !important;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }
}

/* Act Fast Section */


.act-fast-section {
  background-color: #ce286a;
  padding: 80px 30px;
  color: #fff;
  text-align: center;
}

.act-fast-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.act-fast-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
}

.fast-card {
  background-color: #ce286a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
  border-radius: 12px;
  width: 260px;
  transition: box-shadow 0.3s ease;
}

.fast-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card-icon {
  background-color: #fff;
  color: #ce286a;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.fast-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.fast-card p {
  font-size: 14px;
  color: #fff;
}


.act-fast-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}

.claim-btn {
  display: inline-block;
  background-color: #fff;
  color: #ce286a;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.claim-btn:hover {
  background-color: #fce8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #ce286a;
}

.claim-btn .arrow {
  margin-left: 8px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .fast-card {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .fast-card {
    width: 100%;
  }
}


/* Facility Section */
.facility-section {
  background-color: #f7f7f7;
  padding: 80px 30px;
}

.facility-title {
  text-align: center;
  font-size: 36px;
  color: #22285a;
  font-weight: 700;
  margin-bottom: 50px;
}

.facility-cards {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

.facility-card {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* Image Cards */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info Card */
.info-card {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-block i {
  font-size: 24px;
  color: #ce286a;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-block h4 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #22285a;
  font-weight: 600;
}

.info-block p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .facility-cards {
    flex-direction: column;
  }
}


/* Our Guarantee Section */
.guarantee-section {
  background-color: #22285a;
  padding: 60px 30px;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.guarantee-title {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.guarantee-subtext {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  max-width: 700px;
}

.guarantee-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.guarantee-btn {
  background: #fff;
  color: #22285a;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.guarantee-btn i {
  font-size: 16px;
}

.guarantee-btn:hover {
  background: #22285a;
  color: #fff;
}


/* Footer */
footer {
  background: #22285a;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Swiper Arrows */
/*.swiper-button-next,*/
/*.swiper-button-prev {*/
/*  color: #44a2df;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.swiper-button-next:hover,*/
/*.swiper-button-prev:hover {*/
/*  opacity: 0.8;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .swiper-button-next,*/
/*  .swiper-button-prev {*/
/*    display: none;*/
/*  }*/
/*}*/


