    .service-section {
      padding: 80px 20px;
    }
    .section-title {
      font-size: 3rem;
      font-weight: 800;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 60px;
      text-transform: uppercase;
    }
    .service-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
      padding: 35px;
      transition: all 0.3s ease-in-out;
      border: none;
      text-align: left;
    }
    .service-card:hover {
      transform: scale(1.03);
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    }
    .service-card h5 {
      font-weight: 700;
      color: #1e88e5;
      margin-bottom: 20px;
      font-size: 1.4rem;
    }
    .service-card ul {
      padding: 0;
      list-style: none;
    }
    .service-card ul li {
      margin-bottom: 12px;
      padding-left: 30px;
      position: relative;
      font-size: 0.95rem;
    }
    .service-card ul li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      color: #4caf50;
      font-size: 1rem;
    }

    /* Bike Service Section */

    /* .bike-service-card {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.bike-service-card:hover {
  transform: translateY(-5px);
}
.card-icon {
  font-size: 40px;
  color: #0d6efd;
} */

.service-img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .service-card {
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .custom-price {
  font-size: 2.75rem;
}

    .form-container {
      max-width: 600px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }

    input, select, textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    button {
      /* width: 100%; */
      background-color: #007bff;
      color: white;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 600px) {
      .form-container {
        margin: 20px;
        padding: 20px;
      }
    }

    /* Bike service Timeline */

        .timeline-container {
      position: relative;
      margin-top: 50px;
      padding: 40px 0;
    }

    .timeline-line {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 4px;
      background-color: #007bff;
      z-index: 1;
    }

    .timeline-step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .timeline-icon {
      width: 60px;
      height: 60px;
      background-color: #007bff;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px auto;
      font-size: 24px;
    }

    .timeline-content {
      margin-top: 10px;
    }

    /* Responsive stacking */
    @media (max-width: 767.98px) {
      .timeline-line {
        display: none;
      }

      .timeline-step {
        margin-bottom: 40px;
      }
    }

    /* timeline design */

    .selector {
    position: relative;
    width: 100%;
    padding: 15px;
    font-weight: bold;
    border: 2px solid #007bff;
    /* background-color: white; */
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .selector.active {
    background-color: #007bff;
    color: white;
  }

  .ticket-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    display: none;
  }

  .selector.active .ticket-icon {
    display: inline;
  }

  /*------------------ Service Button Blink ---------------------*/

  .blink{
    animation: blinker 1s linear infinite;
  }

  @keyframes blinker{
    50% {opacity: 0;}
  }

  /*------------------ form apartment hidden ---------------------*/

  .form-apartment{
    display: none;
  }

  /*------------------ popup modal ---------------------*/

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      animation: fadeIn 0.5s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .modal-content {
      background-color: #fff;
      width: 700px;
      height: 700px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    .close-btn {
      position: absolute;
      top: 10px;
      padding: 0 10px;
      border-radius: 100%;
      right: 15px;
      background-color: #fff;
      border: none;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      z-index: 999;
      color: #000;
    }
    .slider {
      position: relative;
      width: 100%;
      height: auto;
      overflow: hidden;
      /* max-height: 700px; */
    }
    .slides {
      display: flex;
      transition: transform 1s ease-in-out;
      width: auto;
    }
    .slides img {
 width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
    }
    @media (max-width: 425px) {
      .modal-content {
        width: 95%;
        height: auto;
      }
    }

/*------------------ Contact form Radio Button ---------------------*/

.service-options {
  background-color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.service-options label {
  font-size: 16px;
  margin-left: 10px;
}

.service-options input[type="radio"] {
  margin-right: 10px;
}

/*------------------ Scroll to Top ---------------------*/

#scrollToTopBtn {
  position: fixed;
  bottom:  20px;
  right: 20px;
  display: none;
  /* background-color: #007bff; */
  /* color: #fff; */
  border: none;
  /* border-radius: 50%; */
  /* padding: 15px 25px; */
  /* font-size: 18px;
  font-weight: bold; */
  cursor: pointer;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  transition: opacity 0.3s;
  z-index: 9999;
}

#scrollToTopBtn:hover{
    background-color: #0056b3;
}

/* You can move this to your stylesheet */
#bookingForm button#submitBtn { cursor:pointer; }
.selector.selected, .selector.active { outline: 2px solid #0ea5e9; }
.form-apartment { display:none !important; } /* you already use this */

/*------------------ Social media links ---------------------*/

.big-icon i{
  font-size:25px;
  color: #3b82f6;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.big-icon {
  margin-right: 8px;
}

.big-icon:hover i{
color: #60a5fa;
transform: scale(1.2);
  cursor: pointer;
}

.whatsapp-icon i {
  font-size: 25px;
  color: #25D366;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}


.whatsapp-icon:hover i {
  color: #20C65A;
  transform: scale(1.2);
  cursor: pointer;
}

/*------------------ popup whatsapp icons ---------------------*/

/* Floating Button */
  .whatsapp-btn {
    position: fixed;
    bottom: 95px;
    right: 13px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s;
  }
  .whatsapp-btn:hover {
    background: #1ebe57;
  }

  /* Chat Box */
  .chat-box {
    position: fixed;
    bottom: 160px;
    right: 28px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999;
  }

  .chat-header {
    background: #25D366;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .chat-header-text{
    text-align: center;
  }

  /* Input fields */
.chat-body .form-control {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #000;         
  background: #fff;
  box-shadow: none;
}

.chat-body .form-control::placeholder {
  color: #888;
  font-size: 12px;
}

/* Button */
.chat-btn {
  background: #25D366;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

  .whatsapp-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .whatsapp-close-btn:hover {
    color: #000;
  }

  .chat-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
  }

  .chat-body p {
    margin-bottom: 15px;
  }

  .chat-btn {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }
  .chat-btn:hover {
    background: #1ebe57;
  }