.finance-options-section {
  padding: 38px 20px;
}
.finance-options-section.border {
  border: 0.5px solid #707070;
}
.finance-options-section.spacing {
  margin: 40px auto;
}
@media only screen and (min-width: 992px) {
  .finance-options-section.spacing {
    margin: 80px auto;
  }
}

.finance-options-container {
  box-sizing: border-box;
}

@media only screen and (min-width: 992px) {
  .finance-options-container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #000;
}

.finance-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.finance-option {
  text-align: center;
}

.option-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-icon svg {
  width: 100%;
  height: 100%;
}

.option-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1B1B1B;
}

.option-description {
  font-size: 14px;
  line-height: 1.6;
  color: #1B1B1B;
}

.option-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 40px;
  border: 1px solid #000;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .option-cta {
    width: 100%;
  }
}

.option-cta:hover {
  background: #000;
  color: #fff;
}

/* Mobile Swiper Styles */
.finance-swiper {
  display: none;
}

.swiper-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pause-button {
  min-width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: content-box;
  padding: 0;
}

.pause-button:hover {
  background: #f0f0f0;
  color: #000 !important;
}

.pause-button svg {
  width: 16px;
  height: 16px;
}

.finance-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: auto !important;
}
.finance-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 2px;
  height: 3px;
}

.finance-pagination .swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  background: #ccc; /* inactive color */
}

.finance-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000; /* active color */
  transition: width 0.3s ease;
}

.finance-pagination .swiper-pagination-bullet-active::before {
  animation: bulletLoad 5s linear forwards; /* adjust duration to match autoplay */
}

@keyframes bulletLoad {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.pagination-fraction {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #000;
  border-radius: 20px;
  min-width: 60px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .finance-options-grid {
    display: none;
  }
  .finance-swiper {
    display: block;
  }
  .swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .finance-option {
    padding: 20px 30px;
  }
  .option-description {
    min-height: auto;
  }
}
