.price-section {
  width: 100%;
  padding: 80px 10px 20px 10px;
}

.price-section-title {
  /* width: 350px; */
  color: var(--textDarkColor);
  text-align: center;
  margin: auto;
  font-weight: 600;
  font-size: 35px;
  /* padding-top: 35px; */
}

.price-section-subtitle {
  color: #2a415d;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.price-tag {
  color: var(--textDarkColor);
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  margin-top: 10px;
}

.price-tag span {
  color: var(--textLightColor);
  font-size: 20px;
}

.price-tag-heading {
  color: var(--textDarkColor);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.price-tag-subheading {
  color: #2a415d;
  font-size: 13px;
  text-align: center;
  margin: 8px auto 0;
  max-width: 350px;
  /* Limits to 2 lines */
  line-height: 1.4;
  /* Optional: improves readability */
}


.begin-btn {
  background-color: var(--primaryColor);
  padding: 8px 30px;
  width: max-content;
  color: var(--whiteColor);
  font-size: 13px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  border-radius: 5px;
  justify-content: center;
  margin: 30px auto 20px auto;
}

.begin-btn img {
  width: 14px;
}

.page-wrapper {
  padding: 60px 0px;
  margin: auto;
  border-radius: 13px;
  max-width: 880px;
  box-shadow: 0px 0px 10px rgba(57, 135, 213, 0.3);
  background-color: #fff;
}

.page-title {
  text-align: center;
  margin: auto;
  font-size: 15px;
  color: var(--textDarkColor);
  text-align: center;
  max-width: 400px;
}

.page-title br {
  display: none;
}

.page-flex {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
}

.page-item {
  padding: 10px 20px 40px 20px;
  display: flex;
  column-gap: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.page-item-content {
  width: 280px;
}

.page-item img {
  margin-top: 6px;
  align-self: flex-start;
  width: 20px;
}

.page-item-title {
  color: var(--textDarkColor);
  font-weight: 500;
  font-size: 15px;
}

.page-item-description {
  color: var(--textLightColor);
  font-size: 12px;
}

.page-section-footer {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--textDarkColor);
}

.page-section-footer a {
  color: var(--primaryColor);
}

@media screen and (max-width: 900px) {

  .price-section {
    padding: 60px 20px 30px 20px;
  }

  .price-section-title,
  .price-tag {
    font-size: 25px;
  }

  .price-tag span {
    font-size: 15px;
  }

  .price-tag-heading,
  .price-section-subtitle {
    font-size: 13px;
  }

  .page-wrapper {
    padding: 30px 5px 0px 5px;
  }

  .page-title {
    font-size: 14px;
  }

  .page-title br {
    display: block;
  }

  .page-flex {
    column-gap: 8px;
    justify-content: center;
  }

  .page-item {
    width: 45%;
    column-gap: 7px;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .page-item img {
    width: 15px;
  }

  .page-item-title {
    font-size: 12px;
  }

  .page-item-description {
    margin-top: 10px;
    font-size: 10px;
  }

  .page-section-footer {
    margin-top: 20px;
    font-size: 12px;
    color: var(--textLightColor);
    padding-bottom: 20px;
  }
}

.top-offer-banner {
  background: #2a415d;
  color: #fff;
  /* font-weight: bold; */
  /* padding: 8px 16px; */
  /* border-radius: 6px; */
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}

/* .price-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
} */


.price-section-subsubtitle {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.pricing-plan-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.plan-box {
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  padding: 16px;
  width: 500px;
  /* background: white; */
  position: relative;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlighted {
  border: 2px solid #3987D5;
}

.popular-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #3987D5;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
}

.plan-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2a415d;
}

.plan-price {
  font-size: 28px;
  font-weight: bold;
  color: #2a415d;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 16px;
  color: #555;
}

/* 
.strike-price {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
} */

.strike-price {
  font-size: 16px;
  margin-left: 50px;
  color: rgb(245, 47, 47);
  position: relative;
  display: inline-block;
}

.strike-price::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: rgb(245, 47, 47);
  transform: translateY(-50%);
}

.save-label {
  font-size: 14px;
  background: #e6f4ea;
  color: #137333;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}

.plan-features {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  color: #333;
}

.plan-features li {
  margin-bottom: 8px;
  font-size: 15px;
}

.get-started-btn {
  background-color: #3987D5;
  color: white;
  border: none;
  padding: 10px 20px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-started-btn:hover {
  background-color: #3987D5;
}

.page-footer {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.feature-section {
  padding: 40px 20px;
  background-color: #f7fbff;
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  width: 244px;
  min-height: 200px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card {
  position: relative;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

.feature-desc {
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

.feature-play-btn {
  display: none;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.feature-icon {
  height: 48px;
  margin-bottom: 10px;
}

.feature-title {
  color: var(--textDarkColor);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-desc {
  color: var(--textDarkColor);
  opacity: 0.8;
  font-size: 13px;
}

.feature-play-btn {
  margin-top: 10px;
  background: #1a73e8;
  color: white;
  border: none;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
}

.more-card {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  background: #f1f6ff;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 700px;
  background: #000;
  padding: 20px;
  border-radius: 8px;
}

.video-modal-content iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.close {
  position: absolute;
  top: -10px;
  right: 10px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}


.body-color {
  background: linear-gradient(#F2F9FF 37%, #fff 0%);

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  /* spacing between image and text */
  margin-bottom: 8px;
}

.feature-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* make sure it's on top */
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeAnim 25s linear infinite;
}

.marquee-content {
  display: inline-block;
  padding-right: 50px;
  font-size: 18px;
  /* font-weight: bold; */
  white-space: nowrap;
  color: #fff;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

nav {
  position: relative;
  z-index: 1000;
}