
    :root {
      --primary: #00796b;
      --primary-dark: #004d40;
      --accent: #ffca28;
      --bg-gradient: linear-gradient(135deg, #0f9baa, #004d7a);
    }

    body {
      font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
      background: #f5f7fb;
      color: #1f2933;
    }

    /* ---------- HEADER / NAVBAR ---------- */
    .main-header {
 
  /* border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;  */
      position: sticky;
      top: 0;
      z-index: 1040;
      background: rgba(3, 19, 43, 0.92);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(29 141 191);
}

    .navbar-brand span {
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .navbar-nav .nav-link {
      color: #e5f7ff;
      font-weight: 500;
      padding: 0.6rem 0.9rem;
      border-radius: 999px;
      transition: all 0.2s ease;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.12);
    }

    /* Underline animation */
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 4px;
      width: 0;
      height: 2px;
      background: var(--accent);
      border-radius: 999px;
      transform: translateX(-50%);
      transition: width 0.2s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after {
      width: 60%;
    }

    /* Dropdown hover (desktop) */
    @media (min-width: 992px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDown 0.18s ease-out;
      }
    }

    .dropdown-menu {
      border-radius: 1rem;
      border: none;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
      padding: 0.6rem;
      background: #0f172a;
    }

    .dropdown-item {
      border-radius: 0.7rem;
      padding: 0.2rem 0.55rem;
      color: #cbd5f5;
      font-size: 0.85rem;
    }

    .dropdown-item:hover {
      background: rgba(148, 163, 253, 0.2);
      color: #eef2ff;
    }

    .dropdown-header {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #6b7280;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---------- MOBILE SIDEBAR ---------- */
    .mobile-sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.55);
      display: none;
      z-index: 1039;
    }

    .mobile-sidebar {
      position: fixed;
      inset-block: 0;
      left: 0;
      width: 260px;
      background: #020617;
      padding: 1.25rem 1.25rem 2rem;
      transform: translateX(-100%);
      transition: transform 0.25s ease-out;
      z-index: 1040;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mobile-sidebar.open {
      transform: translateX(0);
    }

    .mobile-sidebar-overlay.show {
      display: block;
    }

    .mobile-sidebar .nav-link {
      padding: 0.55rem 0.8rem;
      border-radius: 0.75rem;
      color: #e5e7eb;
    }

    .mobile-sidebar .dropdown-toggle::after {
      margin-left: auto;
    }

    .mobile-submenu {
      padding-left: 0.75rem;
      margin-top: 0.15rem;
      border-left: 2px solid rgba(148, 163, 253, 0.5);
    }

    .mobile-submenu .nav-link {
      font-size: 0.9rem;
      padding-block: 0.25rem;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {
      background-image: var(--bg-gradient);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.12) 0, transparent 55%),
        radial-gradient(circle at 80% 0, rgba(45, 212, 191, 0.18) 0, transparent 55%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      padding: 5rem 0 4rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(15, 23, 42, 0.16);
      border-radius: 999px;
      padding: 0.15rem 0.6rem 0.15rem 0.2rem;
      border: 1px solid rgba(148, 163, 253, 0.5);
      backdrop-filter: blur(8px);
      font-size: 0.8rem;
    }

    .hero-badge span {
      background: #22c55e;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
    }

    .hero-title {
      font-size: clamp(2rem, 2.7rem + 1vw, 3.3rem);
      font-weight: 800;
      letter-spacing: 0.02em;
      line-height: 1.1;
      margin-bottom: 0.9rem;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: #e5f7ff;
      max-width: 32rem;
    }


    .hero-input-group {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.4rem;
    }

    .hero-input-group .form-control {
      border-radius: 0.9rem;
      border: 1px solid rgba(148, 163, 253, 0.55);
      background: rgba(15, 23, 42, 0.8);
      color: #e5f7ff;
    }

    .hero-input-group .form-control::placeholder {
      color: #9ca3af;
    }

    .hero-input-group .btn-primary {
      border-radius: 0.9rem;
      background: #4f46e5;
      border: none;
      padding-inline: 1.25rem;
      font-weight: 600;
      box-shadow: 0 14px 30px rgba(79, 70, 229, 0.55);
    }

    .hero-input-group .btn-primary:hover {
      background: #4338ca;
      transform: translateY(-1px);
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .hero-metrics-item span {
      display: block;
    }

    .hero-metrics-item .value {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .hero-metrics-item .label {
      font-size: 0.85rem;
      color: #cbd5f5;
    }

    .hero-card {
      position: relative;
      background: rgba(15, 23, 42, 0.98);
      border-radius: 1.7rem;
      padding: 1.5rem 1.4rem;
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(96, 165, 250, 0.8);
      max-width: 360px;
      margin-inline: auto;
    }

    .hero-card-badge {
      position: absolute;
      top: 1.2rem;
      right: 1.1rem;
      background: #22c55e;
      color: #022c22;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .hero-card-title {
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }

    .hero-card-sub {
      font-size: 0.82rem;
      color: #9ca3af;
      margin-bottom: 0.9rem;
    }

    .hero-card-input {
      background: #020617;
      border-radius: 1rem;
      padding: 0.5rem 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 1rem;
      border: 1px solid rgba(51, 65, 85, 0.9);
      color: #e5e7eb;
    }

    .hero-card-input input {
      border: none;
      outline: none;
      background: transparent;
      color: inherit;
      font-size: 0.92rem;
      width: 100%;
    }

    .hero-card-input input::placeholder {
      color: #6b7280;
    }

    .hero-chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.9rem;
    }

    .hero-chip {
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      font-size: 0.75rem;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(75, 85, 99, 0.9);
      color: #e5e7eb;
    }

    .hero-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.4rem;
    }

    .hero-card-footer small {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .hero-badge-soft {
      border-radius: 999px;
      padding: 0.18rem 0.65rem;
      font-size: 0.7rem;
      background: rgba(52, 211, 153, 0.12);
      color: #6ee7b7;
      border: 1px dashed rgba(34, 197, 94, 0.6);
    }

    

    /* ---------- RESPONSIVE TWEAKS ---------- */
    @media (max-width: 991.98px) {
      .desktop-nav {
        display: none !important;
      }
    }

    @media (min-width: 992px) {
      .mobile-nav-toggle {
        display: none !important;
      }
    }

    @media (max-width: 767.98px) {
      .hero-inner {
        padding-top: 4.25rem;
      }
      .hero-card {
        margin-top: 1.75rem;
      }
    }


/* RC sections */
.rc-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rc-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.rc-icon {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 0.9rem;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0284c7;
}

.rc-card-title {
  font-size: 0.98rem;
}

.rc-card-text {
  font-size: 0.82rem;
  color: #6b7280;
}

/* second RC section */
.rc-detail-block + .rc-detail-block {
  margin-top: 0.5rem;
}

.rc-illustration-card {
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.rc-illustration-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* responsive tweak */
@media (max-width: 767.98px) {
  .rc-card {
    align-items: flex-start;
  }
}



.app-banner {
    background: transparent;
}

.app-banner-card {
    border-radius: 2.5rem;
    overflow: hidden;
    background: linear-gradient(90deg, #1361c4, #1c86e2);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    min-height: 220px;
}

.app-banner-left {
    flex: 0 0 360px;
    max-width: 420px;
}

.app-banner-right {
    background: linear-gradient(135deg, #1260c3, #0c4ba0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* if you have an image like in the screenshot */
.app-banner-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/car-banner-illustration.png') center right/contain no-repeat;
}

/* QR box */
.app-banner-qr {
    width: 84px;
    height: 84px;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    font-weight: 600;
}

/* rating / downloads text */
.app-rating,
.app-download {
    color: #ffffff;
}

/* input */
.app-banner-form {
    max-width: 420px;
}

.app-banner-input-group {
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.app-banner-input-group .form-control {
    border: none;
    border-radius: 0;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    box-shadow: none;
}

.app-banner-input-group .form-control::placeholder {
    color: #9ca3af;
}

.app-banner-btn {
    border-radius: 0;
    border: none;
    background: #111827;
    color: #ffffff;
    padding-inline: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-banner-btn:hover {
    background: #020617;
}

/* responsive */
@media (max-width: 991.98px) {
    .app-banner-card {
        border-radius: 1.8rem;
    }

    .app-banner-left {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .app-banner-right {
        min-height: 180px;
    }
}

@media (max-width: 575.98px) {
    .app-banner-card {
        border-radius: 1.4rem;
    }

    .app-banner-qr {
        width: 70px;
        height: 70px;
    }
}



/* Footer Section Css */
    .footer .footer-links a {
  text-decoration: none;
  color: #f5f6f8;
}

.footer .footer-links a:hover {
  color: #e7e9ee;
}







    .top-services-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 24px;
        color: #111827;
    }

    .top-services-wrapper {
        padding: 40px 0;
    }

    .service-card {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 18px 26px;
        border-radius: 16px;
        border: 1px solid rgba(0, 204, 204, 0.3);
        background: #ffffff;
        box-shadow: 0 0 0 1px rgba(0, 204, 204, 0.08);
        transition: all 0.2s ease-in-out;
        cursor: pointer;
    }

    .service-card:hover {
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
        transform: translateY(-2px);
        border-color: rgba(0, 204, 204, 0.7);
    }

    .service-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #1e4242;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00b5b5;
        font-size: 22px;
        flex-shrink: 0;
    }

    .service-text {
        font-size: 1.05rem;
        font-weight: 500;
        color: #111827;
        flex: 1;
        white-space: nowrap;
    }

    .service-arrow {
        color: #00b5b5;
        font-size: 18px;
    }

    @media (max-width: 767.98px) {
        .service-card {
            margin-bottom: 12px;
        }
        .service-text {
            font-size: 1rem;
        }
    }

    /* if not using Bootstrap's d-none */
.hidden {
  display: none !important;
}


