:root {
  --green: #00b789;
  --orange: #f28f26;
  --blue: #4bacf8;
  --gray-bg: #f6f6f6;
  --warm-bg: #f7f1eb;
  --text: #000;
  --muted: #4d4d4d;
  --radius-card: 20px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-weight: normal;
  font-family: "Inter", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: "";
  clear: both;
  display: table;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #000;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}

::placeholder {
  color: #000;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
}

a:-webkit-any-link:focus-visible {
  outline: none;
}


/*add css*/

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

.top-bar {
  background: #F28F26;
  color: #fff;
  overflow: hidden;
  font-size: 13px;
  padding: 10px 0;
}

.top-item {
  white-space: nowrap;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeMove 90s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  font-weight: 400;
  margin: 0 55px;
  position: relative;
}

.marquee-content span:after {
  position: absolute;
  content: "";
  left: -24px;
  top: -2px;
  background: url(../images/tick.png) center no-repeat;
  width: 18px;
  height: 18px;
}

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

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


.main-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.brand-text {
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
}

.navbar{
  background-color: transparent !important;
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 16px;
  margin: 0 13px;
  font-weight: 500;
  padding: 0 !important;
}

.navbar-nav .nav-link:hover {
  color: #10b981;
}

.btnOut {
  margin-left: 30px;
}

.header-btn {
  background: #00B789 !important;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 16px;
  border: none;
  height: auto !important;
}

.header-btn:hover {
  background: #00a37a !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 10px;
  }

  .nav-link {
    margin: 8px 0;
  }
}


.logo{
  height: auto;
}

.hero-section {
  margin: 30px 30px 0;
}

.hero-box {
  background: linear-gradient(to bottom, #fce7d1 0%, #f1efea 50%, #e8f5ff 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
}

.hero-desc {
  font-size: 18px;
  line-height: 23px;
  color: #000;
  max-width: 500px;
  margin: 20px 0;
}

.ratingD {
  font-size: 14px;
  color: #444;
  max-width: 100%;
}

.stars {
  color: #f59e0b;
  font-size: 20px;
}

.hero-list {
  list-style: none;
  padding: 0;
}

.hero-list li {
  margin-bottom: 10px;
  padding-left: 0px;
  position: relative;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.hero-list i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.priceD {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.priceD strong {
  font-weight: 700;
  margin-left: 10px;
}

.small-text {
  display: block;
  font-size: 13px;
  color: #000;
  margin-left: 10px;
  line-height: 18px;
}

.global-btn {
  padding: 16px 112px;
  border-radius: 50px;
  font-weight: 500;
  background: #10b981 !important;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  animation: pulseScale 1.8s infinite;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.global-btn:hover {
  background: #00a37a !important;
  animation-play-state: paused;
}
@keyframes pulseScale {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2,159,119,0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(2,159,119,0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2,159,119,0);
    }
}
.tiny-text {
  font-size: 14px;
  color: #000;
  max-width: 400px;
  text-align: center;
}

.image-wrap {
  position: relative;
}

.signPic {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.leftInner {
  padding: 100px 0;
}

.image-wrap .img-fluid {
  position: relative;
  z-index: 99;
}

.bannrPro1 {
  position: absolute;
  right: 0px;
  bottom: 10px;
  z-index: 9999;
}

.bannrPro2 {
  position: absolute;
  right: 80px;
  bottom: -60px;
  z-index: 99999;
}

.legitArea {
  max-width: 1033px;
  margin: 30px auto;
}

.legitContent {
  margin-left: 35px;
}

.legitContent span {
  font-size: 25px;
  font-weight: 600;
}

.legitContent p {
  font-size: 18px;
  line-height: 22px;
  margin: 15px 0 0;
}

.nad-section {
  background: #f6f6f6;
  padding: 90px 0 80px;
}

.nad-title {
  font-size: 45px;
  color: #000;
  line-height: 60px;
}

.nad-sub {
  font-size: 18px;
  color: #000;
  max-width: 800px;
  margin: 15px auto 30px;
  line-height: 24px;
}

.nad-sub b{
  font-weight: 700;
}

.feature-box h6 {
  font-size: 18px;
  margin: 15px 0;
  color: #000;
  line-height: 20px;
}

.feature-box p {
  font-size: 16px;
  color: #000;
  line-height: 20px;
  margin-top: 5px;
  line-height: 1.6;
}

.icon {
  font-size: 28px;
  color: #111;
}
.icon img{
  display: inline-block;
}
.center-image {
  position: relative;
  display: inline-block;
  margin: 0 -25px;
}

.process-section {
  padding: 95px 0;
  overflow: hidden;
}


.step-box {
  text-align: center;
  margin: 25px auto 0;
}

.stepImg {
  width: 232px;
  height: 232px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0px auto 30px;
}

.step-badge {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 18px;
  padding: 11px 34px;
  border-radius: 20px;
  font-weight: 500;
  font-family: "Merriweather", serif;
}

.step-text {
  font-size: 18px;
  color: #000;
  margin: 10px auto 0;
  max-width: 220px;
  line-height: 24px;
}

.process-section .tiny-text {
  margin: 20px auto 0 !important;
}


.comparison-section {
  max-width: 1150px;
  margin: 90px auto 0px;
}

.labels-col {
  padding-top: 80px;
  background: transparent !important;
}

.label-item {
  padding: 18px 10px;
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  min-height: 78px;
  line-height: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.label-item:last-child {
  border-bottom: none;
}

.featured-card {
  background: #4BACF8;
  border-radius: 18px;
  padding: 65px 20px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 0 -12px;
}

.product-imgD {
  width: 175px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.featured-card .title {
  font-size: 19px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.feature-item {
  padding: 16px 0px;
  font-size: 16px;
  font-weight: 500;
  min-height: 78px;
  line-height: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

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

.priceDBtm {
  font-weight: 600;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 65px 15px 12px;
  height: 100%;
  position: relative;
}

.info-title {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  text-align: center;
  margin-bottom: 10px;
}

.info-item {
  padding: 18px 8px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #eee;
  text-align: center;
  min-height: 78px;
  line-height: 20px;
}

.info-item:last-child {
  border-bottom: none;
}

.comparison-section .col-lg-9 {
  background: #fff;
  border-radius: 12px;
}

/* ── 100K TESTIMONIALS ── */
.testimonials-section {
  background: var(--warm-bg);
  padding: 80px 0;
  position: relative;
  border-radius: ;
  box-shadow: 0px -6px 20px rgba(53, 27, 0, 0.15);;
}

.testimonials-section .big-number {
  font-family: 'Merriweather', serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-section .big-subtitle {
  font-family: 'Merriweather', serif;
  font-size: 75px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-section .intro-text {
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 12px;
}

.testimonials-section .listen-text {
  font-family: 'Merriweather', serif;
  font-size: 25px;
  text-align: center;
  margin: 60px 0 50px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding:22px 15px;
  display: flex;
  align-items: flex-start;
}

.testimonials-section .nad-sub {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px !important;
}

.review-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
  margin-right: 25px;
}

.review-body {
  flex: 1;
}

.reviewer-name {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 14px;
  margin-right: 4px;
  color: #000;
}

.reviewer-badge {
  font-size: 12px;
  color: #555;
}

.review-text {
  font-size: 16px;
  line-height:22px;
  margin:15px 0 20px;
}

/* marquee wrapper for reviews */
.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  margin:22px 0 0;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 80s linear infinite;
  width: max-content;
}

.floting1 {
  position: absolute;
  left: -25px;
  top: -60px;
}

.floting2 {
  position: absolute;
  right: 0;
  top: -80px;
}

.artArrow {
  position: relative;
  margin-bottom: 48px;
}
.artArrow img{
  display: inline-block;
}
.reviews-track:hover {
  animation-play-state: paused;
}

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

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

.reviews-track .review-card {
  width: 390px;
  flex-shrink: 0;
}

.reviews-row2 .reviews-track {
  animation-direction: reverse;
  animation-duration: 80s;
}

/* ── PRODUCT SECTION ── */
.product-section {
  background: #fff;
  padding: 80px 0;
}

.product-card {
  background: #dff1fe;
  border-radius: 30px;
  padding: 50px 60px 0 60px;
  position: relative;
  overflow: hidden;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
}

.product-title {
  font-size: 35px;
  text-align: center;
  margin-bottom: 0;
}

.product-imgs-wrap {
  width: 100%;
  margin: 50px auto 0;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  border-top: 1.5px solid rgba(0, 0, 0, .15);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
  position: absolute;
  left: 30px;
  color: #000;
  bottom: 25px;
  background: #F28F26;
  background: linear-gradient(90deg, rgba(242, 143, 38, 1) 0%, rgba(193, 199, 196, 1) 31%, rgba(174, 220, 255, 1) 100%);
}

.trust-strip {
  border-top: 1.5px solid transparent;
  border-bottom: 1.5px solid transparent;
  border-image: linear-gradient(45deg, #F28F26, #C0C7C4) 1;
  border-image-slice: 1;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  margin: 40px 0px;
  flex-wrap: wrap;
}

.trust-strip .check-ico-dark {
  width: 22px;
  height: 22px;
  margin-right: 16px;
  background: url(../images/blackTick.png) center no-repeat;
}

.trust-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-right: 5px;
}

.btn-cta {
  display: block;
  width: 100%;
  max-width: 400px;
  background: var(--green);
  color: #fff;
  border: .5px solid rgba(0, 0, 0, .1);
  border-radius: 100px;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

.btn-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  text-align: center;
  margin-top: 14px;
  color: #333;
  text-align: left;
}

/* ── FAQ ── */
.faq-section {
  background: var(--gray-bg);
  padding: 80px 0;
}

.faq-itemD {
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-itemD:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.faq-question.active,
.faq-answer.open{
  background-color: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-question h5 {
  margin: 0;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.faq-question.active h5 {
  font-weight: 600;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}

.faq-toggle.open {
  background: #000;
  border-color: #000;
}

.faq-toggle svg {
  transition: transform .3s;
}

.faq-toggle.open svg {
  stroke: #fff;
}

.faq-toggle.open svg line:first-child {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(190deg, rgba(242, 143, 38, .21) 27.66%, rgba(174, 220, 255, .28) 81.14%);
  padding: 90px 0;
  overflow: hidden;
}

.final-cta .cta-content {
  max-width: 580px;
}

.final-cta h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}

.final-cta p.sub {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 500px;
}

.final-cta-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.final-cta-feats li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  background: url(../images/blackTick.png) left center no-repeat;
  padding-left: 30px;
}

.final-imgs {
  position: relative;
  text-align: right;
}
.final-imgs img{
  display: inline-block;
}

.final-imgs img.fi1 {
  position: absolute;
  right: 80px;
  top: 30px;
  width: 240px;
  border-radius: 14px;
  object-fit: cover;
  height: 565px;
}

.final-imgs img.fi2 {
  position: absolute;
  right: 285px;
  top: 70px;
  width: 220px;
  border-radius: 14px;
  object-fit: cover;
  height: 520px;
  z-index: 1;
}

/* ── DISCLAIMER ── */
.disclaimer-section {
  background: #fff;
  padding: 90px 0px;
  text-align: center;
}

.disclaimer-section h3 {
  font-size:30px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 400;
  margin-bottom: 24px;
}

.disclaimer-section p {
  font-size: 18px;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--gray-bg);
  padding: 70px 0;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-wrap img.icon {
  width: 70px;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin: 20px 0 28px;
}

.social-icons img {
  margin: 0 12px;
}

.footer-linksD {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-linksD a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}

.footer-linksD a:hover {
  text-decoration: underline;
}

.footer-linksD span {
  color: #d3d3d3;
  margin: 0 12px;
}

.footer-badgesD {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  padding: 15px 0;
  margin: 30px 0;
}

.footer-badgesD img {
  height: 80px;
  margin: 0 8px;
  object-fit: contain;
}

.footer-legal {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
  max-width: 1100px;
  margin: 0 auto 20px;
  color: #000;
}

.footer-copy {
  font-size: 14px;
  text-align: center;
  color: #000;
}


/* ── SCROLL ANIMATIONS ── */

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.forMob{
  display: none;
}
