body.theme-dark .feature-cards::before,
body.theme-yellow .feature-cards::before,
body.theme-cyan .feature-cards::before,
body.theme-red .feature-cards::before {
  display: none;
  content: none;
}

body.theme-dark .feature-cards,
body.theme-yellow .feature-cards,
body.theme-cyan .feature-cards,
body.theme-red .feature-cards {
  background-image: none;
}
/* Help Section */
.help-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.help-container {
  max-width: 1440px;
  width: 100%;
  margin: 50px auto;
  text-align: center;
}

.help-container h2 {
  color: var(--standerd-black);
  margin: 0;
}

.help-container h2 span {
  display: block;
  color: var(--alltyDark-blue-yellow);
}

/* Responsive */
@media (max-width: 1280px) {
  .help-container {
    margin: 50px auto;
  }
}

@media (max-width: 769px) {
  .help-container {
    margin: 50px;
  }
  .help-container h2 {
    font-size: 2.286rem;
    line-height: 1.313;
    font-weight: 600;
  }
}
@media (max-width: 425px) {
  .help-container {
    margin: 36px;
  }
  .help-container h2 {
    font-size: 30px;
  }
}

/* Feature Cards Section */
.feature-cards {
  padding: 0 50px;
  position: relative;
  width: 100%;
  background-color: var(--blue-bg);
  display: flex;
  justify-content: center;
  z-index: 1;
}

.feature-cards {
  background-image:
    url("../../assets/images/blogMain-ellipse.png"),
    url("../../assets/images/blog-main-ellipse2.png");
  background-position:
    top left,
    top right;
  background-repeat: no-repeat, no-repeat;
  background-size:
    50% 50%,
    40% 40%;
  overflow: hidden;
}

.feature-cards::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(
    circle,
    rgba(47, 109, 255, 1) 0%,
    rgb(34, 86, 208, 0.3) 60%
  );
  border-radius: 50%;
  filter: blur(100px);
  background-position: bottom left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.cards-container {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.card {
  background-color: var(--standerd-white);
  border-radius: 20px;
  border: 1px solid var(--blue-border);
  padding: 24px;
  text-align: center;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.card-icon {
  width: 100%;
  max-width: 88px;
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  object-fit: contain;
}
.ftr-crd-txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card h3 {
  font-weight: 600;
  color: var(--standerd-black);
}

.card p {
  font-size: 1rem;
  line-height: 34px;
  text-align: center;
  max-width: 42ch;
}

/* @media (max-width: 1300px) {
  .card p {
    font-size: 1.2rem;
  }
} */

/* Responsive for Cards */
@media (max-width: 1280.98px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    padding: 50px 0;
  }

  .card p {
    font-size: 1.286rem;
  }
}
@media (max-width: 1024.98px) {
  .feature-cards {
    padding: 0 40px;
  }

  .cards-container {
    padding: 36px 0;
  }

  .card {
    padding: 23px;
    gap: 18px;
  }

  .ftr-crd-txt {
    gap: 12px;
  }
  .ftr-crd-txt h3 {
    font-size: 1.714rem;
  }
  .card-icon {
    width: 75px;
  }
}

@media (max-width: 767.98px) {
  .cards-container {
    display: flex;
    flex-direction: column;
  }
  .ftr-crd-txt {
    width: 100%;
  }
  .ftr-crd-txt p {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .feature-cards {
    padding: 0 24px;
  }

  .card {
    gap: 12px;
  }
  .ftr-crd-txt p {
    font-size: 1.3334rem;
  }
}

/* Why Choose Us Section */
.why-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.why-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1440px;
  width: 100%;
  padding: 50px 100px;
}

.why-header {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.why-header h2 span {
  color: var(--alltyDark-blue-yellow);
}

.why-header p {
  font-size: 1rem;
  color: var(--standerd-black);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-boxes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-box {
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 26px 22px;
  background: var(--standerd-white);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 0 8px 1px rgba(0, 25, 126, 0.31);
}

.why-box-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box-icon img {
  object-fit: contain;
}

.box-txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-box h3 {
  font-weight: 600;
  color: var(--standerd-black);
  margin: 0;
  line-height: 1.3;
}

.box-txt p {
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
}

/* Responsive for Why Choose Us */
@media (max-width: 1280.98px) {
  .why-section-wrapper {
    padding: 50px 50px;
  }

  .box-txt p {
    font-size: 1.286rem;
  }

  .why-header p {
    font-size: 1.286rem;
  }
}

@media (max-width: 1024.98px) {
  .why-section-wrapper {
    padding: 50px 76px;
  }

  .why-boxes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .why-box {
    max-width: 610px;
    width: 100%;
    gap: 16px;
  }

  .why-header h2 {
    font-size: 2.286rem;
    font-weight: 600;
  }
  .why-header p {
    font-size: 1.286rem;
  }
  .box-txt p {
    font-size: 1.286rem;
    line-height: 32px;
  }
  .box-txt h3 {
    font-size: 1.72rem;
  }
}

@media (max-width: 431px) {
  .why-section-wrapper {
    padding: 36px 24px;
    gap: 32px;
  }
  .why-header {
    gap: 8px;
  }
  .why-header h2 {
    font-size: 30px;
  }
  .why-header p {
    font-size: 1.3334rem;
  }
  .why-boxes-container {
    gap: 18px;
  }
  .why-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    gap: 18px;
  }
  .box-txt {
    text-align: center;
  }
  .box-txt p {
    font-size: 1.3334rem;
  }
}
