  :root {
      --primary: #FF6B00;
      --primary-dark: #E55A00;
      --secondary: #1A1A2E;
      --accent: #00D4AA;
      --light: #F8F9FA;
      --dark: #121212;
      --gray: #6C757D;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      background-color: var(--light);
      color: var(--secondary);
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

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

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      padding: 15px 0;
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: flex;
      align-items: center;
    }

    .navbar-brand i {
      margin-right: 8px;
      font-size: 1.6rem;
    }

    .nav-link {
      font-weight: 500;
      margin: 0 8px;
      color: var(--secondary) !important;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary) !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
    }

    .btn-primary {
      background: var(--gradient);
      border: none;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
    
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/passenger 3.png');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff6b00' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: #FF6B00;
      
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 600px;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .hero-btns .btn {
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-light {
      background: rgba(255, 255, 255, 0.9);
      color: var(--secondary);
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .btn-light:hover {
      background: #FF6B00;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      color: #e1e5e9;
    }

    .btn-outline-light {
      border: 2px solid rgba(255, 255, 255, 0.7);
      background: transparent;
    }

    .btn-outline-light:hover {
      background: #FF6B00;
      color: #e9ecef;
      transform: translateY(-3px);
    }

    /* Stats Section */
    .stats {
      background: white;
      padding: 60px 0;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

    .stat-item {
      text-align: center;
      padding: 20px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 10px;
    }

    .stat-text {
      font-size: 1rem;
      color: var(--gray);
    }

    /* How It Works Section */
    .how-it-works {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .demo-container {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }

    .phone-mockup {
      position: relative;
      width: 100%;
      padding-bottom: 200%;
      background: #111;
      border-radius: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .phone-screen {
      position: absolute;
      top: 5%;
      left: 5%;
      width: 90%;
      height: 90%;
      background: white;
      border-radius: 30px;
      overflow: hidden;
    }

    .app-header {
      background: var(--gradient);
      color: white;
      padding: 20px 15px;
      text-align: center;
      font-weight: 600;
    }

    .location-inputs {
      padding: 20px 15px;
    }

    .input-group {
      margin-bottom: 15px;
      position: relative;
    }

    .input-group i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray);
    }

    .form-control {
      padding-left: 45px;
      border-radius: 10px;
      border: 1px solid #e1e5e9;
      height: 50px;
    }

    .vehicle-options {
      display: flex;
      overflow-x: auto;
      padding: 10px 15px;
      gap: 10px;
    }

    .vehicle-option {
      min-width: 80px;
      text-align: center;
      padding: 10px;
      border-radius: 10px;
      background: white;
      border: 1px solid #e1e5e9;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .vehicle-option.active {
      border-color: var(--primary);
      background: rgba(255, 107, 0, 0.1);
    }

    .vehicle-icon {
      font-size: 1.5rem;
      margin-bottom: 5px;
      color: var(--primary);
    }

    .vehicle-name {
      font-size: 0.8rem;
      font-weight: 600;
    }

    .vehicle-price {
      font-size: 0.7rem;
      color: var(--gray);
    }

    .book-btn {
      background: var(--gradient);
      color: white;
      border: none;
      padding: 15px;
      border-radius: 10px;
      font-weight: 600;
      width: calc(100% - 30px);
      margin: 20px 15px;
      transition: all 0.3s ease;
    }

    .book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    }

    .steps {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      max-width: 200px;
    }

    .step-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 15px;
      border: 3px solid rgba(255, 255, 255, 0.7);
    }

    .step h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .step p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* Vehicle Types */
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-title p {
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }

    .vehicle-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      background: white;
    }

    .vehicle-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .vehicle-card img {
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .vehicle-card:hover img {
      transform: scale(1.05);
    }

    .vehicle-card .card-body {
      padding: 25px;
    }

    .vehicle-card .card-title {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--secondary);
    }

    .vehicle-card .card-text {
      color: var(--gray);
      margin-bottom: 20px;
    }

    .price-tag {
      display: inline-block;
      background: var(--gradient);
      color: white;
      padding: 5px 15px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .features {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title p {
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            
            z-index: -1;
            transition: opacity 0.3s ease;
            border-radius: 16px;
        }
        
        .feature-card:hover::before {
            opacity: 0.9;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
            color: white;
            font-size: 1.8rem;
            
            
        }

        .feature-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #f9e6da;
        }

        .feature-card h5:hover {
            color: #FF6B00;
        }

        .feature-card p {
            color: #e1e5e9;
        }


        /* Background images for each feature card */
        .feature-card.safe-reliable::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 4.png');
        }
        
        .feature-card.affordable-prices::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 6.jpeg');
        }
        
        .feature-card.otp-verification::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 3.png');
        }
        
        .feature-card.availability::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 5.png');
        }
        
        .feature-card.quick-booking::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 7.png');
        }
        
        .feature-card.schedule-rides::before {
            background-image: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 1.png');
        }

    /* Driver Section */
    .driver-section {
     background: linear-gradient(135deg, rgba(40, 40, 48, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%), url('images/backgrond 2.png');
      color: white;
      padding: 100px 0;
       background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;

    }

  

    .driver-content {
      position: relative;
      z-index: 2;
    }

    .driver-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #FF6B00;
    }

    .driver-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .driver-section h5 {
      color: #f9e3d5;
    }

    .driver-features {
      margin-top: 40px;
    }

    .driver-feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .driver-feature i {
      background: var(--primary);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    /* Download Section */
    .download-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      text-align: center;
    }

    .download-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .download-section p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .download-btn {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 15px 25px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .download-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-5px);
      color: white;
    }

    .download-btn i {
      font-size: 2rem;
      margin-right: 15px;
    }

    .download-text {
      text-align: left;
    }

    .download-text span {
      display: block;
      font-size: 0.8rem;
      opacity: 0.8;
    }

    .download-text strong {
      font-size: 1.2rem;
    }

    /* Contact Section */
    .contact-section {
      padding: 100px 0;
      background: white;
    }

    .contact-card {
      background: rgb(252, 240, 230);
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      padding: 50px;
      margin-top: 10px;
      position: relative;
      z-index: 3;
    }

    .contact-info {
      margin-bottom: 30px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .contact-item i {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient);
      color: white;
      margin-right: 15px;
      font-size: 1.2rem;
    }

    .form-control {
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #e1e5e9;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
      border-radius: 500px;
    }

    .btn-whatsapp:hover {
      background: #02a757;
      color: white;
    }

    /* Footer */
    .footer {
      background: #343434;
      color: white;
      padding: 60px 0 30px;
    }

    .footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
      color: #FF6B00;
    }

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

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

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: #E55A00;
      padding-left: 5px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Floating Elements */
    .floating {
      animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
      0% { transform: translate(0, 0px); }
      50% { transform: translate(0, -15px); }
      100% { transform: translate(0, 0px); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-btns {
        flex-direction: column;
        width: 100%;
      }
      
      .hero-btns .btn {
        width: 100%;
        text-align: center;
      }
      
      .download-btn {
        width: 100%;
        justify-content: center;
      }
      
      .contact-card {
        padding: 30px 20px;
      }
      
      .steps {
        flex-direction: column;
        align-items: center;
      }
      
      .step {
        margin-bottom: 30px;
      }
    }