.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* Bus image background */
  .hero-bg {
    position: absolute;
    inset: 0;
    /* background-image: url('https://images.unsplash.com/photo-1570125909232-eb263c188f7e?w=1600&auto=format&fit=crop&q=80'); */
    background-image: url('app_background.png');
    background-size: cover;
    background-position: center;
    background-position: 0 60%;
    animation: slowZoom 20s ease-in-out infinite alternate;
    transform-origin: center;
  }

  @keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }

  /* Road motion blur overlay at bottom */
  .road-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  }

  /* Dark overlay */
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0,0,0,0.55) 0%,
      rgba(10,30,60,0.45) 50%,
      rgba(0,0,0,0.3) 100%
    );
  }

  /* Speed lines */
  .speed-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .speed-lines span {
    position: absolute;
    left: -100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    animation: speedLine linear infinite;
    border-radius: 2px;
  }
  @keyframes speedLine {
    from { left: -60%; opacity: 0.6; }
    to   { left: 110%; opacity: 0; }
  }

  /* Content */
  .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .badge {
    display: inline-block;
    background: rgba(255,200,0,0.1);
    border: 1px solid rgba(255,200,0,0.2);
    color: #fff;
    font-size: 3rem;
    letter-spacing: 0px;
    text-transform: capitalize;
    padding: 2px 18px;
    border-radius: 80px;
    margin-bottom: 15px;
    backdrop-filter: blur(6px);
	font-weight:600;
	background: rgba(118 188 226 / 10%);  
  }

  h1 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    margin-bottom: 25px;
    letter-spacing: -1px;
  }

  h1 span {
    color: #ffd700;
    /* color: #00e1ff; */
  }

  p {
    color: rgba(255,255,255,0.85);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    max-width: 860px;
    line-height: 1.7;
    margin-bottom: 36px;
	font-size:1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: #ffd700;
    color: #111;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(255,215,0,0.4);
  }
  .btn-primary:hover {
    background: #ffe84d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.5);
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
  }

  /* Stats bar */
  .stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 20;
	display:none
  }
  .stat {
    flex: 1;
    max-width: 200px;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
  }
  .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }