        /* General Body and Container Styles */


        .bike-vehicle-container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
        }


        /* Hero Section (1st Section) */
        .bike-vehicle-hero {
          background-color: var(--white-color);
          padding: 40px 0;
          text-align: center;
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        }

        .bike-vehicle-content-wrapper {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        }

        .bike-vehicle-section-title {
          max-width: 600px;
          margin: auto;
          font-size: 40px;
        }

        .bike-vehicle-section-description {
          max-width: 700px;
          font-size: 1.2em;
          color: #555;
          line-height: 1.8;
          margin-top: 20px;
        }

        /* Form Section (2nd Section) */
        .bike-vehicle-form-section {
          width: 100%;
          max-width: 1200px;
        }

        .bike-vehicle-estimate-form {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          gap: 0px;
          padding: 30px;
          border-radius: 10px;
          background-color: #fff;
          box-shadow: 0 0px 10px #00000059;

        }

        .bike-vehicle-input,
        .bike-vehicle-select {
          flex: none !important;
          width: 170px;
          padding: 10px 18px;
          border: 1px solid #ddd;
          border-radius: 0px;
          font-size: .80em;
          color: #333;
          transition: all 0.3s ease;
          background-color: #fefefe;
          outline: none !important;
        }

        .bike-vehicle-select {
          width: 200px;
          font-size: 12px !important;
        }


        .bike-vehicle-input::placeholder {
          color: #aaa;
        }

        .bike-vehicle-dropdown-group {
          flex-basis: 100%;
          /* Dropdown takes full width in its row */
        }

        .bike-vehicle-button-row {
          justify-content: center;
          /* Center the button */
          margin-top: 20px;
        }

        .bike-vehicle-button {
          background-color: var(--primary-color);
          /* Primary Red */
          color: #fff;
          padding: 10px 35px;
          border: none;
          border-radius: 0px;
          font-size: .82rem;
          font-weight: 600;
          cursor: pointer;
          transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .bike-vehicle-button:hover {
          background-color: #a93226;

        }

        @media (max-width: 1024px) {
          .bike-vehicle-section-title {
            font-size: 32px;
          }

          .bike-vehicle-section-description {
            font-size: 1.1em;
            padding: 0 10px;
          }

          .bike-vehicle-input,
          .bike-vehicle-select {
            width: 160px;
            font-size: 0.75em;
          }

          .bike-vehicle-button {
            padding: 10px 30px;
            font-size: 0.8rem;
          }
        }

        @media (max-width: 768px) {
          .bike-vehicle-section-title {
            font-size: 28px;
          }

          .bike-vehicle-section-description {
            font-size: 1em;
            line-height: 1.6;
          }

          .bike-vehicle-estimate-form {
            width: 100%;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
          }

          .bike-vehicle-input,
          .bike-vehicle-select {
            width: 100%;
          }

          .bike-vehicle-button {
            width: 100%;
          }
        }

        @media (max-width: 480px) {
          .bike-vehicle-section-title {
            font-size: 24px;
          }

          .bike-vehicle-section-description {
            font-size: 0.95em;
          }

          .bike-vehicle-input,
          .bike-vehicle-select {
            font-size: 0.75em;
            padding: 8px 14px;
          }

          .bike-vehicle-button {
            padding: 10px 20px;
            font-size: 0.78rem;
          }
        }

        .bike-vehicle-error {
          color: #e74c3c;
          /* Red for errors */
          font-size: 0.9em;
          margin-top: 5px;
          position: absolute;
          bottom: -20px;
          /* Position error below input */
          left: 0;
        }

        /* Service Section (3rd Section) */
        .bike-vehicle-service-section {
  background-color: #edf2f7;
  padding: 100px 20px; /* Added side padding for small screens */
  width: 100%;
  box-sizing: border-box;
}

.bike-vehicle-service-details {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.bike-vehicle-service-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.bike-vehicle-vehicle-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bike-vehicle-service-info {
  flex: 2;
  padding-left: 20px;
  box-sizing: border-box;
}

.bike-vehicle-service-header {
  margin-bottom: 15px;
}

.bike-vehicle-service-topic {
  font-size: 2.2em;
  color: #c0392b;
  font-weight: 700;
  margin-bottom: 5px;
}

.bike-vehicle-service-title {
  font-size: 1.4em;
  color: #555;
  font-weight: 400;
  display: block;
}

.bike-vehicle-price-details {
  display: flex;
  align-items: baseline;
  margin-bottom: 25px;
  gap: 15px;
}

.bike-vehicle-price {
  font-size: 2.5em;
  color: #2c3e50;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bike-vehicle-price p {
  font-size: 18px;
  margin: 0;
}

.bike-vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bike-vehicle-tag {
  background-color: #e74c3c;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bike-vehicle-service-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.7;
  text-align: justify;
}

/* ----------- Responsive Adjustments ----------- */

@media (max-width: 900px) {
  .bike-vehicle-service-details {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }

  .bike-vehicle-service-info {
    padding-left: 0;
  }

  .bike-vehicle-price-details {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .bike-vehicle-service-topic {
    font-size: 1.8em;
  }

  .bike-vehicle-service-title {
    font-size: 1.2em;
  }

  .bike-vehicle-price {
    font-size: 2.2em;
  }
}
@media( max-width: 768px){
  .pick-drop{
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bike-vehicle-service-image{
    max-width: 250px;
  }
  .bike-vehicle-price-details {
    justify-content: center;
    flex-direction: column;
  }
  .bike-vehicle-service-section {
    padding: 0;
  }

  .bike-vehicle-service-details {
    padding: 20px;
  }

  .bike-vehicle-service-topic {
    font-size: 1.6em;
  }

  .bike-vehicle-service-title {
    font-size: 1.1em;
  }

  .bike-vehicle-price {
    font-size: 2em;
    flex-direction: column;
  }

  .bike-vehicle-price p {
    width: 100%;
    font-size: 16px;
  }

  .bike-vehicle-service-description {
    font-size: 1em;
  }

  .bike-vehicle-tag {
    font-size: 0.8em;
    padding: 6px 12px;
  }
  
}


        /* ====================truck style======================= */
        .truck-vehicle-section {
          padding: 60px 20px;
          margin: auto;
          width: 100%;
          min-height: 80vh;
          background: #e6f8ff6c;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        }

        .truck-vehicle-section-title {
          text-align: center;
          font-size: 2.2rem;
          color: var(--primary-color);
          margin-bottom: 30px;
        }

        .truck-vehicle-toggle-buttons {
          text-align: center;
          margin-bottom: 30px;
        }

        .truck-vehicle-btn {
          background-color: transparent;
          color: var(--primary-color);
          border: none;
          border-bottom: 2px solid var(--primary-color);
          padding: 6px 20px;
          margin: 0 10px;
          cursor: pointer;
          font-size: 1rem;
          transition: all 0.3s ease;
        }

        .truck-vehicle-btn.active,
        .truck-vehicle-btn:hover {
          background-color: var(--primary-color);
          color: #fff;
        }

        .truck-vehicle-cards {
          width: 100%;
          max-width: 1200px;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: start;
          flex-wrap: wrap;
          gap: 20px;
          background: var(--white-color);
          min-height: 60vh;
          padding: 20px;
          border-radius: 10px;
          box-shadow: 0 0 10px var(--black-shadow);
        }

        .truck-vehicle-card {
          display: flex;
          align-items: center;
          gap: 20px;
          padding: 20px;
          border: 1px solid var(--border);
          border-radius: 10px;
          background-color: var(--white-color);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .truck-vehicle-card img {
          width: 100px;
          height: 100px;
          object-fit: contain;
          border-radius: 8px;
          background: #fff;
          border: 1px solid #ddd;
        }

        .truck-vehicle-card-info {
          flex: 1;
        }

        .truck-vehicle-card-info h4 {
          margin: 0;
          font-size: 1.1rem;
          color: var(--primary-color);
        }

        .truck-vehicle-tag {
          font-size: 0.9rem;
          color: #555;
          background-color: #ffe6e6;
          display: inline-block;
          padding: 4px 10px;
          border-radius: 20px;
          margin: 8px 0;
        }

        .truck-vehicle-price {
          color: #222;
          font-weight: bold;
        }

        .truck-vehicle-hidden {
          display: none;
        }

        @media (max-width: 768px) {
          .truck-vehicle-card {
            flex-direction: column;
            align-items: flex-start;
          }

          .truck-vehicle-card img {
            width: 100%;
            max-width: 150px;
            height: auto;
          }
        }

        /* ======================MODAL==================== */


        .bike-vehicle-button {
          background: red;
          color: white;
          border: none;
          cursor: pointer;
        }

        /* Autocomplete suggestions */
        .suggestion-box {
          position: absolute;
          top: 50px;
          left: 0;
          background: #fff;
          border: 1px solid #ccc;
          width: 100%;
          max-height: 200px;
          overflow-y: auto;
          z-index: 100;
        }

        .suggestion-box div {
          padding: 8px;
          font-size: 12px;
          cursor: pointer;
        }

        .suggestion-box div:hover {
          background: #f0f0f0;
        }

        .bike-vehicle-modal-overlay {
          width: 100%;
          position: relative;
          background: var(--black-shadow);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 1000;
          padding: 20px;
        }

        .bike-vehicle-modal {
          background: #fff;
          border-radius: 10px;
          width: 100%;
          max-width: 800px;
          position: relative;
          padding: 30px 10px;
        }

        .bike-vehicle-close {
          position: absolute;
          width: 20px;
          height: 20px;
          top: 5px;
          right: 5px;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        #bikeMap {
          height: 300px;
          border-radius: 10px;
        }

        .modal-content {
          display: flex;
          flex-wrap: wrap;
          padding: 20px;
          gap: 20px;
        }

        .modal-left img {
          width: 100px;
        }

        .modal-left,
        .modal-right {
          flex: 1 1 200px;
        }

        .modal-right input {
          width: 100%;
          margin-bottom: 10px;
          padding: 8px;
          border: 1px solid #ccc;
          border-radius: 6px;
        }