body,
html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}
.hero {
  background: url("../images/hero-background.jpg") no-repeat center center/cover;
  position: relative;
  height: 100vh;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 60%;
  transform: translateY(-50%);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero .highlight {
  color: #d2fe00;
  font-weight: 700;
}
.hero p.subtitle {
  color: #d2fe00;
  font-size: 1.2rem;
  font-weight: 500;
}
.navbar-custom {
  background: #c5d82c;
  border-radius: 16px;
  margin: 20px auto 0;
  max-width: 1000px;
  width: 100%;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed; /* ✅ makes it sticky */
  top: 20px; /* ✅ sticks 20px from top */
  z-index: 999; /* ✅ keep above hero overlay */
  height: 60px;
}
.header-wrapper {
  display: flex;
  justify-content: center;
}

.navbar-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.navbar-links a {
  color: #2a2b69;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}
.navbar-logo img {
  height: 28px;
}
.btn-black {
  background-color: black;
  color: white;
  border: none;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}
.btn-black:hover {
  background-color: #333;
}

.app-button {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 18px;
}

.app-button i {
  font-size: 1.3rem;
}
.app-button img {
  width: 25px;
}
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px; /* spacing between columns */
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stats-container h4 {
  text-align: right;
}

.stat {
  padding: 0 20px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: #ccc;
}
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 40px; */
  padding: 0px 20px 0px 20px;
  position: relative;
  top: -100px;
}

.video-wrapper {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.about-us {
  padding: 80px 20px;
  background-color: #f8f8fc;
  font-family: "Segoe UI", sans-serif;
}

.container-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-us-text-section {
  text-align: right;
}

.image-section {
  flex: 1 1 350px;
  text-align: center;
}

.app-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
}

.text-section {
  flex: 1 1 450px;
}

.badge {
  display: inline-block;
  background-color: #2c2b85;
  color: #c7da2e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.text-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
}

.description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.features li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* FAQ Section */

.faq-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.container-faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.faq-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  /* max-width: 300px; */
  height: auto;
  margin-top: 60px;
}

.faq-content {
  flex: 1 1 500px;
  text-align: right;
}

.faq-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 30px;
}

.highlight {
  color: #a4c40c;
}

.faq-box {
  margin-top: 10px;
  text-align: left;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #353877;
  background-color: #e7e9fd;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::before {
  content: "−";
}
.faq-question:hover::before {
  background-color: #d3d6fc;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 480px;
  text-align: right;
  float: right;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .container-faq {
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    text-align: center;
    padding-left: 40px;
  }

  .faq-question::before {
    left: auto;
    right: 20px;
  }

  .faq-content {
    text-align: center;
  }
}

.benefits-section {
  background-color: #f8f8ff;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
  text-align: right;
}

.container-benefits {
  max-width: 1200px;
  margin: auto;
}

.benefits-section h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 600;
}

.benefits-section .green {
  color: #a4c40c;
}

.benefits-section .grey {
  color: #444;
}

.benefit-card {
  opacity: 0;
  transform: translateX(100px); /* Start offset from right */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  background: white;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: right;
}

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
  height: 32px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.tomor-footer {
  background: linear-gradient(90deg, #2b2e90 0%, #a4c40c 100%);
  text-align: center;
  color: #fff;
  padding: 60px 0px 0;
  font-family: "Segoe UI", sans-serif;
}
.footer-content {
  padding: 80px 0px 120px 0px;
}

.footer-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.app-buttons img {
  height: 58px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  background-color: #111;
  padding: 16px 20px;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

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

/* Testimonial */

.testimonials-section {
  background-color: #f7f7ff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  text-align: right;
}

.testimonial-header .badge {
  background-color: #3f3d56;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonial-header .highlight {
  color: #a4c40c;
}
.testimonial-carousel-wrapper {
  width: 90%;
  margin: 0 auto;
}
.testimonial-text {
  padding: 0 20px;
}
.testimonial-carousel .testimonial-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 350px;
  margin: auto;
  text-align: right;
  /* min-height: 250px; */
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
}

.testimonial-author span {
  color: #777;
  font-size: 0.8rem;
}

.testimonial-author img {
  width: 32px !important;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-footer {
  margin-top: 30px;
}

.testimonial-footer a {
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid #000;
}

.testimonial-footer a:hover {
  color: #a4c40c;
  border-color: #a4c40c;
}

/* owl navigation button  */
.testimonial-custom-nav {
  position: relative;
  width: 100%;
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid #111;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.testimonial-left-btn {
  left: -10px; /* Adjust as needed */
}
.testimonial-arrow-left {
  rotate: 180deg;
}
.testimonial-right-btn {
  right: -10px; /* Adjust as needed */
}
/* Owl Navigation Customization */
.owl-nav {
  text-align: center;
  margin-top: 20px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.3s;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.owl-nav button span {
  display: none; /* Hide default text */
}

/* End Testimonials */

.target-section {
  padding: 60px 20px;
  text-align: right;
  max-width: 1200px;
  margin: 0 auto;
}
.description-target {
  max-width: 800px;
}
.target-descrip-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.highlight {
  color: #a3cb38;
}
.subtitle {
  font-size: 1.2rem;
  color: #a3cb38;
  font-weight: 500;
  margin-bottom: 20px;
}
.description {
  color: #333333;
  font-size: 18px;
  /* max-width: 900px; */
  /* margin: 0 auto 40px; */
  line-height: 1.6;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
.image-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height: 320px;
  max-width: 300px;
  text-align: center;
  position: relative;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card p {
  position: absolute;
  margin: 15px 0;
  color: #fff;
  bottom: 0;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  font-size: 1rem;
  font-weight: 500;
}

.easy-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #eef2f7;
}
.get-started {
  background-color: #6a0dad;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.easy-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.get-started {
  background-color: #6a0dad;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.get-started-section {
  padding: 60px 20px;
  background: #fff;
  text-align: right;
}
.get-started-title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: #414280;
  color: #9db004;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.get-started-section h2 {
  font-size: 28px;
  margin: 15px 0 50px;
  line-height: 1.4;
  font-weight: bold;
}

.highlight-green {
  color: #90be20;
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.step-card {
  background: #f7f8fe;
  border-radius: 16px;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-card img {
  width: 280px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 25px;
}

.step-text {
  flex: 1;
  text-align: right;
  max-width: 512px;
}

.step-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.step-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.step-number {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  background: #90be20;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.stepper-line {
  position: absolute;
  top: 60%;
  right: -35px;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  border-left: 2px dotted #ccc; /* the dotted vertical line */
  z-index: 0;
}
