@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background: #fff;
  color: #0d0d0d;
  scroll-behavior: smooth;
}

/* Loader styles */
/* Loader styles */

#loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e6e6e6;
  /* Map land color */
  /* Create an abstract city street grid pattern */
  background-image:
    linear-gradient(white 14px, transparent 14px),
    linear-gradient(90deg, white 14px, transparent 14px);
  background-size: 150px 150px;
  /* Size of city blocks */
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

#loader::before {
  /* Add some "parks" or variation to the map */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #d4edda 20%, transparent 21%);
  background-size: 300px 300px;
  background-position: -50px -50px;
  opacity: 0.5;
  pointer-events: none;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* ADVANCED MAP LOADER CARS */
.loader-car {
  position: absolute;
  font-size: 28px;
  z-index: 10;
  color: #ff6600;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

.car-1 {
  top: 15%;
  left: -50px;
  color: #ff6600;
  animation: driveEast 3s linear infinite;
}

.car-2 {
  top: 35%;
  right: -50px;
  color: #28a745;
  transform: scaleX(-1);
  animation: driveWest 4s linear infinite;
  animation-delay: 0.5s;
}

.car-3 {
  top: 55%;
  left: -60px;
  color: #007bff;
  font-size: 32px;
  animation: driveEast 5s linear infinite;
  animation-delay: 1.2s;
}

.car-4 {
  top: 75%;
  right: -50px;
  color: #dc3545;
  transform: scaleX(-1);
  animation: driveWest 3.5s linear infinite;
  animation-delay: 2s;
}

.car-5 {
  top: 10%;
  left: -80px;
  color: #6610f2;
  animation: driveEast 2.5s linear infinite;
  animation-delay: 1.8s;
}

.car-6 {
  top: 85%;
  right: -70px;
  color: #fd7e14;
  transform: scaleX(-1);
  animation: driveWest 4.5s linear infinite;
  animation-delay: 0.8s;
}

@keyframes driveEast {
  0% {
    left: -100px;
  }

  100% {
    left: 105%;
  }
}

@keyframes driveWest {
  0% {
    right: -100px;
  }

  100% {
    right: 105%;
  }
}

/* End of car animations */

/* Fade-in for page load */
.fade-in {
  opacity: 1;
  transform: none;
}

.fade-in.loaded {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 2px solid #0d0d0d;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.logo {
  height: 44px;
  display: flex;
  align-items: center;
}

.brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ff6600;
}

.brand-sub {
  font-size: 0.82rem;
  color: #ff6600;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #ff6600;
  font-weight: bold;
}

.contact-btn {
  background: #ff6600;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: none;
  margin-left: 16px;
  transition: background .2s;
}

.contact-btn:hover {
  background: #e65000;
}


/* HERO - FULL VIEWPORT BG & FROSTED CARD */
.hero {
  position: relative;
  width: 98.9vw;
  height: 98.5vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  display: block;
  min-width: 100vw;
  min-height: 100vh;
  max-width: none;
  max-height: none;
}

.hero-center-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: flex;
  margin-left: 10%;
  align-items: center;
}

.hero-card {
  min-height: 300px;
  /* comment out or reduce if present */
}

/* Frosted glass hero card */
.hero-card.hero-card-elevated,
.hero-card {
  width: 470px;
  max-width: 96vw;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.15), 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
  border: 1.5px solid #eaeaea;
  backdrop-filter: blur(5px) saturate(1.4);
  -webkit-backdrop-filter: blur(5px) saturate(1.4);
  /* blurred glass effect */
}

/* HERO TABS */
.hero-tabs {
  display: flex;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: #fff;
  overflow: hidden;
  border-bottom: 1.5px solid #e0e0e0;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

.hero-card-content {
  padding: 20px 30px 10px;
  transition: opacity 0.2s ease-in-out;
  min-height: 330px;
  /* Prevent layout jump - increased height further */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0 0 0;
  font-size: 1.08em;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  position: relative;
  transition: color .18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  height: 85px;
  /* Increased to show text */
}

.tab-icon {
  font-size: 1.5em;
  display: block;
  margin-bottom: 7px;
}

.hero-tab.active {
  color: #ff6600;
  font-weight: 600;
  background: #fff;
}

.tab-underline {
  width: 50%;
  height: 3px;
  background: #ff6600;
  border-radius: 2px;
  position: absolute;
  left: 25%;
  bottom: 0px;
  display: none;
  /* Hidden by default */
  content: '';
}

.hero-tab.active .tab-underline {
  display: block;
  /* Show only on active */
}

.hero-card-content {
  padding: 22px 28px 8px 28px;
  text-align: center;
}

.hero-card-content h1 {
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 14px 0;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.08em;
  color: #232323;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.get-app-btn {
  background: #111;
  color: #fff;
  font-size: 1.09em;
  font-weight: 500;
  border: none;
  border-radius: 7px;
  padding: 13px 36px;
  margin: 0 0 20px 0;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
  transition: background 0.2s;
}

.get-app-btn:hover {
  background: #222;
}

.learn-link {
  margin: 12px 0 0 0;
  color: #111;
  font-size: 1.08em;
  text-decoration: underline;
  font-weight: 500;
  display: inline-block;
  transition: color .14s;
}

.learn-link:hover {
  color: #080808;
}

/* Responsive hero card and hero section */
@media (max-width: 900px) {

  .hero-card.hero-card-elevated,
  .hero-card {
    width: 98vw;
    min-width: 0;
    /*     padding-left: 2vw;
    padding-right: 2vw; */
  }

  .hero-center-content {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
  }

  .hero {
    min-height: 420px;
    height: 100vh;
  }

  .hero-bg-img {
    min-height: 100vh;
    min-width: 100vw;
    height: 100vh;
    width: 100vw;
  }
}

/* ...rest of your styles remain unchanged... */

/* LEARN MORE PAGE STYLES */
.page-hero {
  background-color: #f8f9fa;
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(rgba(255, 102, 0, 0.05), rgba(255, 102, 0, 0.05));
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: 800;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.15rem;
  line-height: 1.6;
}

.service-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service-section:last-child {
  border-bottom: none;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-icon {
  font-size: 4rem;
  color: #ff6600;
  margin-bottom: 20px;
  background: #fff5eb;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.service-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05rem;
  color: #444;
}

.service-list li i {
  color: #28a745;
  margin-top: 6px;
  /* Align with title */
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-list li strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 4px;
}

.service-list li p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
}

.cta-banner {
  background: #111;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-banner .btn {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  transition: transform 0.2s;
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
}

.app-download-title {
  font-size: 1.16rem;
  font-weight: 500;
  margin-bottom: 39px;
  text-align: center;
  margin-left: 0;
}

.app-download-cards {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.app-download-card {
  background: #fff;
  color: #222;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  padding: 22px 33px;
  min-width: 330px;
  font-size: 1.06rem;
  cursor: pointer;
  transition: transform .18s;
  font-weight: 500;
}

.app-download-card:hover {
  transform: scale(1.03);
}

.app-download-card-logo {
  width: 50px;
  height: 50px;
  background: transparent;
  /* Changed from #eee to look cleaner */
  border-radius: 7px;
  margin-right: 10px;
  flex-shrink: 0;
  /* Prevent logo form shrinking */
  object-fit: contain;
}

.app-download-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f6f6f6;
  margin-left: 16px;
}

/* WHY */
.why {
  background: #fff;
  padding: 46px 0 36px;
  text-align: center;
}

.why h2 {
  font-size: 1.3rem;
  margin-bottom: 37px;
  font-weight: 700;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px 60px;
  margin-bottom: 30px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 500px;
  text-align: left;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff6600;
  /* Swift Orange */
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.04em;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.why-card p {
  font-size: 0.99em;
  color: #222;
  margin: 0;
}

.why-availability {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
  margin-top: 22px;
  text-align: left;
}

.why-availability-icon {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #eee;
  margin-top: 5px;
}

.why-availability-title {
  font-weight: bold;
  font-size: 1.02em;
  display: block;
  margin-bottom: 2px;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  padding: 0;
  margin: 0;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 98.9vw;
  height: 180px;
  opacity: 0.95;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.testimonials-bg img {
  max-width: 100%;
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.testimonials h2 {
  text-align: center;
  padding-top: 24px;
  font-size: 1.23rem;
}

.testimonials-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 32px 0 38px 0;
}

.testimonial-card {
  border-radius: 13px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 26px 26px 14px 18px;
  max-width: 410px;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
}

.testimonial-card p {
  font-size: 1.01rem;
  margin: 0 0 12px 0;
  color: #fff;
}

.testimonial-author {
  font-size: 0.95em;
  color: #fff;
  font-weight: 700;
}

/* HOW IT WORKS */
.how {
  background: #fff;
  padding: 51px 0 46px;
  text-align: center;
  border: #000;
  border-bottom: 100%;
}

.how h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-desc {
  font-size: 1.13em;
  color: #000;
  margin-bottom: 38px;
}

.how-cards {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.how-card {
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.09);
  min-width: 420px;
  max-width: 510px;
  width: 100%;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  transition: transform 0.16s, box-shadow 0.16s;
}

.how-card:hover {
  transform: translateY(-4px) scale(1.001);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.how-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.how-card-content {
  padding: 18px 20px 14px 20px;
}

.how-card h3 {
  font-size: 1.05rem;
  margin: 0 0 7px 0;
  font-weight: 700;
}

.how-card p {
  font-size: 0.9rem;
  color: #222;
  margin: 0;
}

@media (max-width: 900px) {
  .how-cards {
    flex-direction: column;
    align-items: center;
    gap: 28px !important;
  }

  .how-card {
    max-width: 98vw;
    min-width: 0;
  }
}

/* ============================
   PROFESSIONAL FOOTER
   ============================ */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 0;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-tagline {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ff6600;
  transform: translateY(-3px);
}

.footer-contact-info span {
  display: block;
  color: #bbb;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-info i {
  color: #ff6600;
  width: 20px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ff6600;
  padding-left: 5px;
}

.app-col p {
  color: #aaa;
  margin-bottom: 20px;
}

.footer-app-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-app-btns img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-app-btns img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  font-size: 0.9rem;
  color: #777;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom-links a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #ff6600;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.nav-toggle {
  display: none !important;
}

/* Modal overlay covers entire screen */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal box sizing */
.modal-content {
  background: #fff;
  margin: 40px auto;
  padding: 40px 18px;
  border-radius: 12px;
  width: 80vw;
  max-width: 370px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
  .modal-content {
    width: 86vw;
    padding: 18px 8px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 96vw;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #2d63c8;
  color: #fff;
  padding: 12px 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.2s;
}

.modal-btn:hover {
  background-color: #1742a0;
}

.playstore {
  background: #34A853;
}

.applestore {
  background: #0066CC;
}

.playstore:hover {
  background: #257c3e;
}

.applestore:hover {
  background: #0051a8;
}

/* HERO STORE CTA BUTTONS */
.store-cta {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.store-cta__item {
  display: block;
  transition: transform 0.2s ease;
}

.store-cta__item:hover {
  transform: translateY(-2px);
}

.store-cta__img {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .store-cta {
    justify-content: center;
    gap: 10px;
  }

  .store-cta__img {
    height: 38px;
  }
}

/* ============================
   TESTIMONIAL MARQUEE
   ============================ */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fades edges so cards appear/disappear smoothly */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* Speed of scroll: 60s for a gentle pace */
  animation: marquee-scroll 60s linear infinite;
}

/* Pause scroll on hover for readability */
.testimonial-track:hover {
  animation-play-state: paused;
}

/* Scroll Animation: Moves left by 50% (assuming content is doubled) */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

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

.t-card {
  flex: 0 0 320px;
  /* Fixed width for consistency */
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  /* Prevent text selection drag on touch */
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #ff6600;
  /* Swift Orange Highlight */
}

.t-stars {
  color: #ffb400;
  /* Star yellow */
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.t-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f9f9f9;
  padding-top: 15px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #222;
}

.t-role {
  display: block;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================
   HOW IT WORKS (Redesign)
   ============================ */
.how-works {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.hw-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.hw-header p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.hw-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.hw-step {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hw-icon-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 2px solid #ffefe5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  color: #ff6600;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.hw-step:hover .hw-icon-box {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
  background: #ff6600;
  color: white;
  border-color: #ff6600;
}

.hw-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #222;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  border: 3px solid white;
}

.hw-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.hw-step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.hw-connector {
  padding-top: 30px;
  color: #ddd;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hw-cta {
  margin-top: 40px;
}

.hw-btn {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.hw-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

@media (max-width: 768px) {
  .hw-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hw-connector {
    transform: rotate(90deg);
    padding: 10px 0;
    margin: -10px 0;
  }
}

/* ============================
   FAQ ACCORDION (Professional)
   ============================ */
.faq-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.faq-header p {
  color: #666;
  font-size: 1.1rem;
}

.faq-accordion {
  max-width: 1000px;
  /* Increased max-width for 2 columns */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item.active {
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-item.active .faq-question {
  color: #ff6600;
}

.faq-icon {
  font-size: 0.9rem;
  color: #ff6600;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 25px;

}

/* ============================
   WHY CHOOSE (Modern Redesign)
   ============================ */
.why-section {
  padding: 100px 0 80px;
  background: white;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

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

/* Make the last 2 items centered if there are 5 (grid-column span tricks or just flexbox logic inside grid wrapper)
   Actually, Flexbox is easier for the "3 top, 2 bottom centered" layout. */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-item {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Soft, premium shadow */
  border: 1px solid rgba(0, 0, 0, 0.03);
  width: calc(33.333% - 20px);
  min-width: 300px;
  max-width: 380px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.2);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background: #fff5eb;
  /* Light Orange Bg */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff6600;
  margin-bottom: 25px;
  transition: background 0.3s, color 0.3s;
}

.why-item:hover .why-icon-box {
  background: #ff6600;
  color: white;
}

.why-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.why-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .why-item {
    width: 100%;
    max-width: 450px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* ============================
   APP DOWNLOAD SECTION (Polished)
   ============================ */
.app-download {
  background-color: #ff6600;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.app-download-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.app-download-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.app-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.app-card-link:hover {
  transform: translateY(-5px);
}

.app-download-card {
  background: white;
  border-radius: 12px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  min-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.app-card-link:hover .app-download-card {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.app-download-card-logo {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

.app-card-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-right: auto;
  /* Pushes arrow to the right */
}

.app-download-arrow {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background 0.3s;
}

.app-card-link:hover .app-download-arrow {
  background: #ff6600;
  color: white;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .app-download-cards {
    flex-direction: column;
    align-items: center;
  }

  .app-card-link,
  .app-download-card {
    width: 100%;
    max-width: 350px;
  }
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Modal overlay covers entire screen */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal box sizing */
.modal-content {
  background: #fff;
  margin: 40px auto;
  padding: 40px 18px;
  border-radius: 12px;
  width: 80vw;
  max-width: 370px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
  .modal-content {
    width: 86vw;
    padding: 18px 8px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 96vw;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #2d63c8;
  color: #fff;
  padding: 12px 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.2s;
}

.modal-btn:hover {
  background-color: #1742a0;
}

.playstore {
  background: #34A853;
}

.applestore {
  background: #0066CC;
}

.playstore:hover {
  background: #257c3e;
}

.applestore:hover {
  background: #0051a8;
}
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-center-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.page-hero {
  position: relative;
  width: 100%;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* CRITICAL FIX FOR DESKTOP SPACING */
.container,
.footer-content.container,
.nav.container {
  width: 100% !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

/* LOGO ALIGNMENT TWEAK (DESKTOP ONLY) */
@media (min-width: 769px) {
  header .nav.container {
    padding-left: 50px !important;
    margin-left: 70px !important;
    transform: translateX(-20px);
    width: auto !important;
  }
}

/* CUSTOM SCROLLBARS */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 6px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #e65c00;
}