/* ====== Base ====== */
:root {
  --bg: #191919;
  --card: #121926;
  --soft: #f5f7fb;
  --text: #101828;
  --muted: #c9c9c9;
  --note: #ececec;
  --border: #e5e7eb;
  --accent: #3a95e6;
  --accent2: #2dd4bf;
  --white: #ffffff;
  --darkbtn: #212121;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.1);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  color: var(--white);
  background: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 1px;
}
p {
  letter-spacing: 0.8px;
  line-height: 1.5;
}
.container {
  width: min(1350px, 92%);
  margin: 0 auto;
}
.center {
  text-align: center;
}
.h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 14px;
}
.note {
  color: var(--note);
  max-width: 62ch;
  margin: 0 auto;
  font-size: 18px;
}
.accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 400;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
  font-size: 18px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: var(--darkbtn);
  color: var(--white);
}
.btn-wide {
  width: 100%;
  border-radius: 12px;
}
.btn-secondary {
  background: var(--white);
  color: var(--darkbtn);
  padding: 12px 30px;
  border: 2px solid var(--white);
}
.btn-secondaryopp {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-optional {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--white);
}
.btn-optionalwhite {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.highlight {
  color: var(--accent);
}

.section {
  padding: 60px 0;
}
.section-client {
  padding: 30px;
}
.section-dark {
  background: var(--bg);
  color: #fff;
}
.section-soft {
  background: var(--white);
}
.section-dark .note {
  color: rgba(255, 255, 255, 0.75);
}
.section-dark .card {
  background: #2e2e2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.muted {
  color: var(--muted);
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.header-inner .btn {
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
}
.brand img {
  height: 45px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-weight: 400;
  color: var(--white);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}
.mobile-section {
  display: none;
}
/* ====== Hero ====== */
.hero {
  padding: 64px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background-image: url(../img/hero-dashboard-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 0px 30px;
}
.hero-copy h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.4em;
  margin: 14px 0 10px;
  color: var(--white);
}
.subhead {
  color: var(--white);
  font-size: 17px;
  line-height: 1.6;
  max-width: 516px;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.mini-trust {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mini {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  letter-spacing: 0.5px;
}
.mini::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background-image: url("../img/circle-dot.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.mock {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 420px;
}
.mock-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.mock-fg {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(220px, 42%);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.chat-widget {
  position: absolute;
  left: 16px;
  top: 16px;
  width: min(380px, 62%);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-top {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}
.chat-lang {
  margin-left: auto;
  font-weight: 800;
  font-size: 12px;
  color: #111827;
}
.chat-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
}
.bubble.user {
  background: #f2f4f7;
  align-self: flex-start;
}
.bubble.ai {
  background: rgba(25, 179, 106, 0.12);
  color: #0e7a4a;
  align-self: flex-end;
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-card {
  display: flex;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  align-items: center;
}
.product-card img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}
.pname {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 6px;
}
.mini-btn {
  font-size: 12px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}
.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.send {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.client-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
  justify-items: center;
}
.client-section img {
  width: 175px;
}
/* ====== Cards grid ====== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.card {
  background: #2e2e2e;
  border-radius: var(--radius);
  padding: 18px;
}
.section-dark .card h3 {
  color: #fff;
  letter-spacing: 1px;
  max-width: 250px;
  margin: 15px auto 10px;
  font-size: 18px;
  line-height: 1.6em;
}
.card p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.5em;
  font-size: 15px;
}
img.card-img {
  width: 75px;
}
.section-dark .note {
  margin-top: 18px;
}

/* ====== Feature rows ====== */
.feature-row {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-top: 40px;
  background-image: linear-gradient(to right, #2e2e2e, #212121);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #838383;
}
.feature-copy {
  width: 45%;
}
.feature-visual {
  width: 55%;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}

.feature-copy h3 {
  margin: 0 0 10px;
  font-size: 35px;
  max-width: 406px;
}
.feature-copy p {
  margin: 0 0 14px;
  color: var(--note);
  line-height: 1.6;
  font-weight: 500;
  max-width: 390px;
}
.feature-visual img {
  border-radius: var(--radius);
  border: 1px solid #969696;
  box-shadow: var(--shadow);
  background: #fff;
}
.feature-row a {
  font-weight: 400;
}
img.featured-img-ads {
  display: none;
}

/* ====== Journey ====== */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 24px;
}
.journey-container {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.journey-container p {
  max-width: 840px;
  font-size: 18px;
  line-height: 1.5;
}
.journey-card {
  border-radius: var(--radius);
}
.journey-card img {
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.journey-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.journey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ====== Social ====== */
.customer-section h2 {
  max-width: 900px;
  margin: auto;
}
.customer-section p {
  color: var(--note);
  font-size: 18px;
  max-width: 955px;
  margin: auto;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}
.social-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 16px;
}
.social-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.social-top img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #fff;
}
.reply {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 10px 0 0;
}
.section-dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

/* ====== Categories ====== */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.cat {
  position: relative;
  overflow: hidden;
  border: 1px solid #848484;
  border-radius: 14px;
}
.cat img {
  border-radius: 14px;
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.cat-content-section {
  position: absolute;
  inset: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.cat:hover img {
  transform: scale(1.1);
}
.cat:hover .cat-content-section {
  opacity: 1;
  transform: translateY(0);
}
.cat-content-section p {
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0px;
}
.cat span {
  color: var(--white);
}

/* ====== Metrics ====== */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.metric {
  background: #2e2e2e;
  border-radius: var(--radius);
  padding: 25px 16px;
  text-align: center;
}
.val {
  font-size: 34px;
  font-weight: 700;
}
.lbl {
  color: #ececec;
  font-weight: 500;
  margin-top: 10px;
}

/* ====== Testimonials slider ====== */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.slider-actions {
  display: flex;
  gap: 10px;
}
h2.testimonial-heading {
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.testimonial-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.t-card {
  min-width: calc((100% - 28px) / 3);
  background: #2e2e2e;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  background-image: url(../img/testimonial-quotes.png);
  background-position: bottom right;
  background-size: 110px;
  background-repeat: no-repeat;
}
p.testi-content {
  min-height: 140px;
  margin-top: 15px;
}
/* Pagination */
.t-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-dot.active {
  background: #000;
  transform: scale(1.2);
}
.t-card p {
  margin: 0px;
  color: var(--muted);
  line-height: 1.6;
}
.t-card span {
  font-weight: 400;
}
.t-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.t-who img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.t-who span {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}

/* Pricing */
.pricing-head {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-head h2 {
  margin: 0px;
}
.pricing-head p {
  width: 100%;
  max-width: 100%;
  margin: 0px;
}
.billing-label {
  font-weight: 600;
  cursor: pointer;
  color: #777;
}
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.billing-label {
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  user-select: none;
}
.billing-label.is-active {
  color: #0e7a4a;
}

.billing-switch {
  width: 52px;
  height: 28px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
  border: none;
  cursor: pointer;
}

.billing-knob {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.billing-switch.is-yearly .billing-knob {
  transform: translateX(24px);
}

.toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.toggle-btn {
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}
.toggle-btn.is-active {
  background: rgba(25, 179, 106, 0.14);
  color: #0e7a4a;
}
section#pricing {
  background: var(--white);
}
.pricing-grid-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.price-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #c6c6c6;
}
article.price-card.bg-card {
  background-image: url(../img/starter-plan-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid transparent;
}
article.price-card.bg-card h3 {
  color: #fff;
}
article.price-card.bg-card p {
  color: #fff;
  font-weight: 500;
}
article.price-card p {
  color: #adadad;
  font-weight: 500;
  font-size: 14px;
}
/*article.price-card.bg-card .amount{color: #fff; font-weight: 500;}*/
article.price-card.bg-card ul li {
  color: #fff;
  font-weight: 500;
}

.price-card h3 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #212121;
  font-size: 22px;
  letter-spacing: 0.5px;
}
article.price-card .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0;
  font-size: 22px;
  font-weight: 700;
  color: #212121;
}
article.price-card.bg-card .price {
  color: #fff;
}
.plan-features {
  margin-top: 12px;
  padding-left: 18px;
  line-height: 1.7;
}
.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--darkbtn);
  line-height: 1.7;
  font-weight: 500;
  min-height: 280px;
}
.cta-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

/* Section Soft CSS Starts from here */
.section-soft h2 {
  font-weight: 700;
}
.section-soft p {
  color: #5b5b5b;
  font-weight: 500;
  margin-top: 15px;
}
/* Contact */
#contact {
  background: var(--white);
}
.getaquote-container {
  background: var(--darkbtn);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
}
.left-getaquote-container {
  width: 45%;
}
.right-getaquote-container {
  width: 55%;
}
.contact-form {
  margin: 22px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 900;
  font-size: 13px;
}
input,
textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-btn {
  width: 180px;
}

/* ====== Footer ====== */
.site-footer {
  background-image: url(../img/footer-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 40px 0 18px;
}
.container.footer-container {
  display: flex;
  gap: 80px;
}
.footer-col-one {
  width: 35%;
}
.footer-col-two {
  width: 65%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: 16px;
}
.f-logo {
  height: 60px;
  margin-bottom: 10px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  display: block;
  margin: 8px 0;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.f-col p {
  color: var(--white);
  max-width: 400px;
}
a.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
a.to-top {
  width: 40px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 50%;
  color: black;
  box-shadow: 0px 5px 27px rgba(0, 0, 0, 0.19);
}

/* ====== Tablet (<=1024px) ====== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
  }
  .hero-copy {
    padding: 20px 0px 35px;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .t-card {
    min-width: calc((100% - 14px) / 2);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ====== Mobile (<=768px) ====== */
@media (max-width: 767px) {
  .section {
    padding: 54px 0;
  }
  .menu-btn {
    display: block;
  }
  .nav {
    position: fixed;
    top: 75px;
    right: 0px;
    left: 0px;
    background: var(--bg);
    box-shadow: var(--shadow);
    padding: 30px 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .header-inner .btn {
    padding: 12px 22px;
  }
  .nav.is-open {
    display: flex;
  }
  .chat-widget {
    width: calc(100% - 32px);
  }
  .mock {
    min-height: 520px;
  }
  .mock-fg {
    display: none;
  }
  .product-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .t-card {
    min-width: 100%;
  }
  .pricing-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .large-screen-section {
    display: none;
  }
  .mobile-section {
    display: block;
  }
  /* Hero Section Css Starts From Here */
  .hero-grid {
    padding: 0px 18px;
    grid-template-columns: repeat(1, 1fr);
  }
  /* Client Section Starts From here */
  .client-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* Featured Section Css starts from here */
  .feature-row {
    padding: 20px;
  }
  .feature-copy {
    width: 100%;
  }
  img.featured-img-ads {
    display: block;
    border-radius: 8px;
  }
  .feature-visual {
    display: none;
  }
  /* Category Section Css Starts from here */
  .category-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Get a Quote Section css Starts from here */
  .getaquote-container {
    flex-direction: column;
    gap: 0px;
  }
  .left-getaquote-container,
  .right-getaquote-container {
    width: 100%;
  }
  /* Journey Section CSS Starts from here */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .mobile-section .cta-row {
    margin-top: 25px;
  }
  /* Footer section CSS Starts from Here */
  .container.footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-col-one,
  .footer-col-two {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 2fr;
  }
  .pricing-grid,
  .social-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .price-card ul {
    min-height: auto;
  }
  p.testi-content {
    min-height: 140px;
    margin-top: 15px;
  }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slight scale for images */
.reveal-img {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
}

.reveal-stagger.show > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.show > *:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-stagger.show > *:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal-stagger.show > *:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal-stagger.show > *:nth-child(4) {
  transition-delay: 0.4s;
}
.reveal-stagger.show > *:nth-child(5) {
  transition-delay: 0.5s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-img,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Css For WhatsApp Floating Icons */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.thankyou {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #fff;
}
a.btn.btn-primary.thank_btn {
  margin: auto;
  display: flex;
  width: fit-content;
  margin-top: 20px;
}
