/* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }
    body {
      background-color: #f7fcf8;
      color: #1a3324;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    /* HEADER — With New Animated Logo */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid #e6e6e6;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
    }

						
    /* Navigation */
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      font-size: 16px;
      font-weight: 500;
      color: #1a3324;
      padding: 6px 0;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #3dbf62;
    }

    /* Hero / Booking Section */
    .hero {
      margin-top: 80px;
      padding: 120px 40px 80px;
      background: url('./img/car.jpg') center/cover no-repeat;
      position: relative;
      color: #fff;
    }
    .hero::after {
      content: '';0
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
   
    }
    .hero-content {
      position: relative;
      max-width: 600px;
      margin: auto;
      text-align: center;
	  color: #ffffff;  /* Changed to white */
    }
    .hero-content h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
    }
   .hero-content p {
	font-size: 20px;
	margin-bottom: 40px;
	line-height: 1.4;
	color: #ffffff;  /* Changed to white */
	}

    /* Booking Form */
    .search-form {
      position: relative;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 800px;
      margin: auto;
      z-index: 1;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .search-form label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #1a3324;
    }
    .search-form input, .search-form select {
      padding: 10px 12px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .search-form button {
      grid-column: span 2;
      padding: 12px 22px;
      background: #3dbf62;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      transition: background 0.3s;
    }
    .search-form button:hover {
      background: #2e9b4f;
    }

    /* Cars Section */
    .section {
      padding: 80px 40px;
      text-align: center;
    }
    .section h2 {
      font-size: 34px;
      margin-bottom: 40px;
      color: #1e4b31;
      font-weight: 700;
    }
    .cars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }
    .car-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .car-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .car-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .car-card .info {
      padding: 20px;
    }
    .car-card .info h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #1e4b31;
    }
    .car-card .info p {
      font-size: 15px;
      margin-bottom: 16px;
      color: #555;
    }
    .car-card .rent-btn {
      padding: 10px 20px;
      background: #3dbf62;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .car-card .rent-btn:hover {
      background: #2e9b4f;
    }

    /* Features */
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 40px;
    }
    .feature {
      flex: 1 1 220px;
      max-width: 280px;
      text-align: center;
    }
    .feature-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #3dbf62;
    }
    .feature h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #1e4b31;
    }
    .feature p {
      font-size: 14px;
      color: #555;
    }

    /* Footer */
    footer {
      background: #3dbf62;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      margin-top: 60px;
    }
    footer p {
      font-size: 14px;
    }