 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefefe;
      color: #1a2c3e;
      scroll-behavior: smooth;
      line-height: 1.5;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .logo-img{
        width: 184px;
    }
    /* buttons & global */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ff5e08;
      color: white;
      font-weight: 700;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 8px 18px rgba(230, 126, 34, 0.25);
    }
    .btn-primary:hover {
      background: #cf711f;
      transform: translateY(-3px);
      box-shadow: 0 14px 26px rgba(230, 126, 34, 0.35);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #ff5e08;
      color: #ff5e08;
      padding: 10px 26px;
      border-radius: 40px;
      font-weight: 600;
      transition: 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      background: #fff;
      color: #ff5e08;
    }
 /* Floating Cars */
        .floating-cars {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-car {
            position: absolute;
            font-size: 60px;
            color: rgba(255, 255, 255, 0.1);
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(360deg); }
        }
    /* header / navbar */
    header {
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(2px);
      background: rgba(255,255,255,0.96);
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1px 0;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 1.9rem;
      font-weight: 800;
      letter-spacing: -0.5px;
    }
    .logo span {
      color: #ff5e08;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #2c3e50;
      transition: 0.2s;
    }
    .nav-links a:hover, .nav-links a.active {
      color: #ff5e08;
    }
    /* hero section */
    .hero {
      padding: 60px 0 80px;
      background: linear-gradient(135deg, #fef9f0 0%, #ffffff 100%);
    }
    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
    }
    .hero-content {
      flex: 1.2;
    }
    .hero-content .badge {
      background: #fde9df;
      color: #ff5e08;
      display: inline-block;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .hero-content h1 {
      font-size: 3.6rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #0b2a72;
    }
    .hero-content p {
      font-size: 1.2rem;
      color: #4a627a;
      margin-bottom: 30px;
      max-width: 90%;
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 30px;
    }
    .stat h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ff5e08;
    }
    .hero-image {
      flex: 1;
      background: url('https://placehold.co/600x400/FFF3E8/FFE0C0?text=Luxury+Cars+%F0%9F%9A%97') no-repeat center;
      background-size: contain;
      min-height: 320px;
      border-radius: 32px;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    }
    /* custom image via unsplash style? Use inline SVG or nice emoji? We'll use fontawesome + modern gradient */
    .car-show {
      background: linear-gradient(145deg, #ffedd5, #fff5e8);
      border-radius: 48px;
      display: flex;
      align-items: center;
      /* justify-content: center; */
      padding: 20px;
      text-align: center;
    }
    .car-show i {
      font-size: 180px;
      color: #ff5e08;
      filter: drop-shadow(0 12px 18px rgba(0,0,0,0.1));
    }
    @media (max-width: 800px) {
      .hero-content h1 { font-size: 2.4rem; }
      .hero-grid { flex-direction: column; }
      .nav-links { gap: 20px; margin-top: 12px; }
      .container { padding: 0 24px; }
    }

    /* featured cars section */
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .section-sub {
      text-align: center;
      color: #5e6f8d;
      margin-bottom: 48px;
    }
    .cars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      margin: 40px 0 60px;
    }
    .car-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid #f0ede8;
    }
    .car-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 36px -14px rgba(0, 0, 0, 0.15);
    }
    .car-img {
      background: #faf3ea;
      text-align: center;
      /* padding: 28px 0 16px; */
      width: 100%;
      border-radius: 20px;
    }
    .car-img i {
      font-size: 80px;
      color: #ff5e08;
    }
    .car-info {
      padding: 20px 20px 24px;
    }
    .car-info h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .car-details {
      display: flex;
      gap: 20px;
      margin: 15px 0;
      color: #5f6c84;
      font-size: 0.9rem;
    }
    .price {
      font-size: 1.5rem;
      font-weight: 800;
      color: #ff5e08;
      margin: 12px 0;
    }
    .price small {
      font-size: 0.8rem;
      font-weight: 400;
      color: #7a8aa3;
    }
    /* how it works */
    .steps {
      background: #fefaf5;
      padding: 70px 0;
      border-radius: 60px 60px 0 0;
      margin-top: 40px;
    }
    .steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 30px;
    }
    .step {
      flex: 1;
      min-width: 200px;
      text-align: center;
      background: white;
      padding: 28px 16px;
      border-radius: 48px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.03);
    }
    .step-icon {
      background: #ffede0;
      width: 70px;
      height: 70px;
      line-height: 70px;
      border-radius: 50%;
      margin: 0 auto 20px;
      font-size: 30px;
      color: #ff5e08;
    }
    /* testimonial */
    .testimonial {
      background: #ffffff;
      padding: 70px 0;
    }
    .testimonial-card {
      max-width: 700px;
      margin: 0 auto;
      background: #fff9f3;
      padding: 36px 40px;
      border-radius: 48px;
      text-align: center;
      box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    }
    .testimonial-card i.fa-quote-left {
      font-size: 32px;
      color: #ff5e08;
      opacity: 0.5;
      margin-bottom: 16px;
    }
    .testimonial-text {
      font-size: 1.2rem;
      font-weight: 500;
      margin: 18px 0;
      color: #2c3e50;
    }
    .client-name {
      font-weight: 700;
      margin-top: 20px;
    }
    /* contact & booking form */
    .booking-section {
      background: linear-gradient(120deg, #0b2a72 0%, #1a2b38 100%);
      color: white;
      border-radius: 48px;
      margin: 40px 0 60px;
      padding: 50px 48px;
    }
    .booking-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      align-items: center;
    }
    .booking-info {
      flex: 1;
    }
    .booking-info h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .booking-form {
      flex: 1.2;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(2px);
      padding: 32px;
      border-radius: 36px;
    }
    .input-group {
      margin-bottom: 18px;
    }
    .input-group input, .input-group select {
      width: 100%;
      padding: 14px 18px;
      border-radius: 60px;
      border: none;
      font-family: inherit;
      background: #fff;
      font-size: 0.95rem;
    }
    .booking-form button {
      width: 100%;
      justify-content: center;
    }
    footer {
      background: #0f2027;
      color: #cfdfed;
      padding: 50px 0 30px;
      border-radius: 32px 32px 0 0;
    }
    .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    }
    .footer-col h4 {
color: #ffffff;
    margin-bottom: 20px;
    font-size: 21px;
    padding-bottom: 16px;
    }
    .social-icons a {
      color: #cfdfed;
      margin-right: 18px;
      font-size: 1.4rem;
      transition: 0.2s;
    }
    .social-icons a:hover { color: #ff5e08; }
    .copyright {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid #2c3e4e;
      margin-top: 30px;
      font-size: 0.85rem;
    }
    @media (max-width: 700px) {
      .booking-section { padding: 30px 20px; }
      .testimonial-card { padding: 24px; }
    }

        @media only screen and (max-width: 680px) {
          .nav-links a{display:none}
          .shodivmob{display:block !important;}
        }