:root {
  /* Primary brand greens */
  --primary: #0A8F3C;
  /* main logo green */
  --secondary: #3DBA6F;
  /* light accent green */

  /* Gradient (logo-style) */
  --gradient: linear-gradient(135deg,
      #0A8F3C,
      #3DBA6F);

  /* Neutrals */
  --dark: #0B1F14;
  /* deep green-black */
  --light: #F3FFF8;
  /* soft green-white */
  --text: #0B1F14;
  --muted: #6B8F7A;
  --white: #ffffff;
}

 * {
        box-sizing: border-box
    }
body {
 margin: 0; overflow-x: hidden;
}
a.login {
  color: var(--primary);
}

a {
  text-decoration: none;
}

/* HEADER */
.site-header {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.header-space {
  height: 80px;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active {
  color: var(--primary);
}

.header-btns .btn-primary {
  background: var(--gradient);
  padding: 8px 20px;
  border-radius: 30px;
  color: #fff;
}

.header-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* HERO */
/* RESET */
.hero-banner * {
  box-sizing: border-box;
}

.col-lg-6.hero-content {
  padding-top: 90px;
}

/* HERO BACKGROUND */
.hero-banner {
  /* min-height:100vh; */
  background:
    linear-gradient(120deg, #1b9d4d0d, #199b4b40);
  position: relative;
  overflow: hidden;
  /* padding-top: 120px; */
  font-family: 'Segoe UI', sans-serif;
}

.phone-imgs {
  height: 584px;
  width: 573px;
  object-fit: cover;
}

/* LEFT CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin: 20px 0;
}

.hero-content p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  border-radius: 30px;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

/* PERSON */
.hero-person {
  position: absolute;
  left: -80px;
  bottom: -60px;
}

.hero-person img {
  width: 120px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
  text-align: center;
  padding-top: 50px;
}

.phone-img {
  width: 397px;
  z-index: 2;
  position: relative;
  height: 524px;
  object-fit: contain;
}

/* FLOATING CARDS */
.card {
  position: absolute;
  width: 200px;
  background-color: transparent;
  border: 0px;
  animation: float 6s ease-in-out infinite;
}

.card-top {
  top: 10%;
  left: 10%;
}

.card-bottom {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

/* ICONS */
.icon-lock,
.icon-dollar {
  position: absolute;
  font-size: 40px;
  color: #c7d2fe;
}

.icon-lock {
  top: 20%;
  right: 15%;
}

.icon-dollar {
  bottom: 20%;
  left: 15%;
}

/* SOCIAL */
.hero-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-social a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:991px) {
  header.site-header {
    position: absolute;
    width: 100%;
    background: #fff !important;
    height: auto;
    z-index: 9;
}
  .hero-banner {
    padding-top: 100px !important;
  }
.phone-img {
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%;
    object-fit: contain;
}
  .hero-content h1 {
    font-size: 33px;
  }

  .hero-social {
    display: none;
  }

  .hero-person {
    display: none;
  }
}

/* BRANDS */
/* PARTNERS SECTION */
.partners {
  background: #ffffff;
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 4px solid #1e40af;
  /* blue bottom line like screenshot */
}

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

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnerScroll 25s linear infinite;
}

.partners-track img {
  height: 45px;
  margin: 0 35px;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partners-track img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* PAUSE ON HOVER */
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }

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

/* MOBILE */
@media (max-width: 768px) {
  .phone-mocks {
    height: auto !important;  }
  .partners-track img {
    height: 35px;
    margin: 0 20px;
  }
}


/* FEATURES */
/* SECTION */
.about-features {
  padding: 100px 0;
  background: #fff;
}

/* TEXT */
.section-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin: 15px 0;
}

.section-desc {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
}

/* FEATURE CARDS */
.feature-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;

  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}

.feature-card h5 {
  margin-top: 15px;
  font-weight: 700;
  color: var(--dark);
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ICON */
.icon-circle {
  width: 48px;
  height: 48px;
  background: #2c318f;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: absolute;
  right: 1px;
  top: -16px;
}

/* MOBILE MOCKUP */
.mobile-mock-wrapper {
  position: relative;
 
}

.mobile-bg {
  position: absolute;
  right: 0;
  top: 60px;
  width: 320px;
  height: 380px;
  background: var(--primary);
  border-radius: 40px;
  z-index: 1;
}

.mobile-mock {
  position: relative;
  width: 260px;
  height: 520px;
  background: #111;
  border-radius: 40px;
  margin: auto;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
}

.mobile-notch {
  width: 120px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: auto;
}

.mobile-screen {
  padding: 40px 20px;
  color: #fff;
  text-align: left;
}

.mobile-screen h6 {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BALANCE CARD */
.balance-card {
  background: rgba(255, 255, 255, .15);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
}

/* BUTTON */
.mock-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .phone-mocks {
    height: auto !important;

}
  .col-lg-6.hero-content {
    padding-top: 28px;
}
  .phone-imgs {
    height: 287px;
    width: 573px;
    object-fit: cover;
}
.about-features {
    padding: 50px 0;
    background: #fff;
}
  .section-title {
    font-size: 22px !important;
  }

     .feature-cards {
        /* flex-direction: column; */
        padding: 10px;
        gap: 29px;
    }

  .mobile-mock-wrapper {
    margin-top: 50px;
  }
}

/* SECTION */
.why-choose {
  padding-bottom: 80px;
  background: #fff;
}

/* HEADER */
.why-header {
  max-width: 700px;
  margin: 0 auto 40px;
}

.why-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.why-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  margin: 15px 0;
}

.why-header p {
  color: var(--muted);
  font-size: 16px;
}

/* GRID */
.why-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: end;
}

/* CARDS */
.why-card {
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

/* LEFT */
.why-card.cream {
  background: var(--gradient);
  border-radius: 10px;
  color: #fff;
}

.arrow-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4f46e5;
}

/* PHONE MOCK */
.phone-mock {
  background: #111;
  border-radius: 30px;
  width: 293px;
  height: 420px;
  margin: 21px auto 0;
  color: #fff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
}

.phone-notch {
  width: 120px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: auto;
}

.phone-screen {
  padding: 25px 18px;
}

.phone-screen h6 {
  font-size: 14px;
  opacity: .8;
}

.amount {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  font-size: 11px;
  opacity: .9;
}

/* CENTER */
.why-card.purple {
  background: var(--primary);
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.why-card.purple h3 {
  font-size: 54px;
  font-weight: 800;
}

.why-card.purple h4 {
  margin: 15px 0;
  font-weight: 700;
}

/* RIGHT */
.why-card.image {
  background: #fff;
  text-align: center;
  padding: 20px 0px 0px 0px;
  border-radius: 10px;
}

.why-card.image img {
  max-width: 95%;
  border-radius: 18px;
  margin-top: 20px;
  height: 59%;
  object-fit: contain;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .why-choose {
    padding-bottom: 45px;
    background: #fff;
}
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 22px;
  }

  .phone-mock {
    margin: auto;
  }
}

/* SECTION */
.key-features {
  background: var(--primary);
  padding: 80px 0;
  color: var(--white);
}

/* HEADER */
.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 20px;
}

.features-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e0e7ff;
  font-weight: 600;
}

.features-left h2 {
  font-size: 44px;
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.2;
}

.features-right {
  max-width: 420px;
}

.features-right p {
  color: #e5e7eb;
  margin-bottom: 20px;
}

.features-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--light);
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.feature-card {
  background: var(--white);
  border-radius: 22px;
  padding: 35px 30px;
  color: var(--text);
  box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ICON */
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.icon-wrap i {
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .features-header {
    flex-direction: column;
  }

  .features-left h2 {
    font-size: 22px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose .col-12 {
    margin-bottom: 13px;
}
}

@media(max-width:576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #f9fafb;
}

.service-box {
  padding: 40px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.blue {
  background: #3b82f6;
}

.purple {
  background: #6366f1;
}

.pink {
  background: #ec4899;
}

.orange {
  background: #f97316;
}

/* SECTION */
.dashboard-section {
  padding: 110px 0;
  background: #fff;
}

/* TEXT */
.dashboard-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.dashboard-desc {
  color: var(--muted);
  margin: 25px 0 30px;
  max-width: 520px;
}

/* LIST */
.dashboard-list {
  list-style: none;
  padding: 0;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* IMAGE */
.dashboard-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(15, 23, 42, .18);
}

.dashboard-img {
  width: 100%;
  display: block;
}

/* BEFORE / AFTER TAG */
.tag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, .6);
  color: #fff;
}

.tag.before {
  left: 12px;
}

.tag.after {
  right: 12px;
}

/* RESPONSIVE */
@media(max-width:991px) {
  a.navbar-brand img {
    width: 10;
    width: 100%;
    max-width: 100%;
    height: 100px;
}
  .features-header {

    gap: 9px;
  
}
.key-features {
    background: var(--primary);
    padding: 32px 0;
    color: var(--white);
}
  .dashboard-title {
    font-size: 22px;
  }

  .dashboard-image-wrap {
    margin-top: 40px;
  }
}


/* FOOTER */
/* FOOTER */
.site-footer {
  background: var(--white);
  padding: 61px 0 1px;
  position: relative;
}

/* CTA */
.footer-cta {
  background: var(--primary);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  color: #fff;
}

.cta-image img {
  width: 286px;
  border-radius: 18px;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 800;
}

.cta-content p {
  margin: 15px 0 25px;
  max-width: 520px;
  color: #e0e7ff;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* FOOTER GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {

  color: #fff;


  display: inline-block;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.footer-col h5 {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--dark);
}

.footer-col p {
  color: var(--muted);
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul a:hover {
  color: var(--primary);
}

/* APP BUTTONS */
.app-buttons {
  display: flex;

  gap: 14px;
}

.app-btn {
  background: var(--gradient);
  color: #fff;
  border-radius: 26px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  text-align: center;
  width: 38px;
  height: 37px;
  align-items: center;
  justify-content: center;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;

  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

/* RESPONSIVE */
@media(max-width:991px) {
  .trust-section {
    padding: 37px 0 !important;
   
}
  .cta-content h3{
    font-size: 22px !important;
  }
  .footer-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:576px) {
  section.legal-page {
    padding-top: 50px;
}
  .legal-banner .container {
    padding-top: 60px;
}
  .legal-banner {

    height: 323px !important;
  
}
  .footer-bottom {
    margin-top: 24px !important;
    padding-top: 16px !important;
 
}
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* SECTION */
.trust-section {
  padding: 70px 0;
  background: radial-gradient(circle at top, #f3f4ff, #ffffff);
}

/* HEADER */
.trust-header {
  text-align: center;
  margin-bottom: 80px;
}

.trust-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* CARDS */
.trust-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trust-card {
  background: var(--white);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
}

.trust-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 10px;
  color: var(--dark);
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
}

.read-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

/* PHONE */
.trust-phone {
  display: flex;
  justify-content: center;
}

.phone-mocks {
  width: 360px;
  height: 520px;
  background: #111;
  border-radius: 38px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .25);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: auto;
}

.phone-screen {
  padding: 35px 20px;
  color: #fff;
}

.phone-screen h4 {
  font-size: 22px;
  margin-bottom: 30px;
}

.wallet-card {
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
}

.wallet-card.green {
  background: #e8f7ee;
  color: #065f46;
}

.wallet-card.pink {
  background: #fde7f3;
  color: #831843;
}

/* STATS */
.trust-stats {
  margin-top: 90px;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .08);
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.stat-box p {
  color: var(--muted);
  margin-top: 5px;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .testimonial-section {
    padding: 44px 0;
  
}
.contact-card {
    background: #fff;
    padding: 20px IM !important; 
}
.dashboard-section {
    padding: 46px 0;
    background: #fff;
}
.footer-cta {

    padding: 2px 0px 21px;

}
.contact-info-box {

    padding: 17px;

    margin-top: 20px;
}
  .trust-header {
    text-align: center;
    margin-bottom: 37px;
}
  .trust-grid {
    grid-template-columns: 1fr;
    display: block;
  }
.trust-phone {
    
    margin: 29px 0px;
}
  .trust-header h2 {
    font-size: 20px;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .testimonial-header h2 {
    font-size: 22px !important;
  
}
.contact-wrapper {
    padding: 40px 0;
    background: #f9fafb;
}
}

@media(max-width:576px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.testimonial-section {
  padding: 70px 0;
  background: var(--light);
}

/* HEADER */
.testimonial-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
}

.testimonial-header p {
  color: var(--muted);
  margin-top: 8px;
}

/* SLIDER CARD */
.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
  margin: 20px;
}

.testimonial-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card p {
  margin: 20px 0 30px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

/* USER */
.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: none;
}

.review-user strong {
  display: block;
  color: var(--dark);
}

.review-user span {
  font-size: 14px;
  color: var(--primary);
}

/* SLICK CUSTOM */
.testimonial-slider .slick-dots li button:before {
  font-size: 10px;
  color: var(--secondary);
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: var(--primary);
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  z-index: 2;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  color: #fff;
  font-size: 18px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .testimonial-card {
    padding: 30px;
    margin: 10px;
  }
}


.testimonial-slider {
  margin: 0 -15px;
}

.legal-banner {
  color: #fff;
  background-image: url("/assets/images/business-.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0000009e;
  background-blend-mode: color;
  height: 487px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-banner h1 {
  margin-bottom: 10px;
}

section.legal-page {
    padding-top: 50px;
}

.legal-banner .container {
    padding-top: 116px;
}

section.legal-page h1, h2, h3, h4, h5, h6 {
    font-size: 18px;
    font-weight: 700;
}
section.legal-page p {
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.7;
    font-size: 14px;
}
section.legal-page ul li{
     margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.7;
    font-size: 14px;
}

.contact-wrapper {
  padding: 80px 0;
  background: #f9fafb;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-title {
  font-weight: 700;
  margin-bottom: 12px;

}

.contact-desc {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORM */
.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  resize: none;
}

.submit-btn {
    background: var(--gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}

/* RIGHT INFO */
.contact-info-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-info-box h4 {
  margin-bottom: 14px;
}

.contact-info-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-info-list i {
  font-size: 16px;
}

.contact-hours {
  font-size: 14px;
  color: #444;
}
.trust-card{
  position: relative;
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0A8F3C, #3DBA6F);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(10,143,60,0.45);
  animation: whatsappPulse 2.5s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
}

/* PULSE EFFECT */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10,143,60,0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgb
