   .cs_vision_list {
      margin: 25px 0 0;
      padding: 0;
      list-style: none;
    }

    .cs_vision_list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 14px;
      font-size: 16px;
      color: #555;
    }

    .cs_vision_list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #46208f;
      /* Change to your theme color */
      position: absolute;
      left: 0;
      top: 2px;
    }


    /* popup */

    /* ==========================
   Modal
========================== */

    .modal-dialog {
      max-width: 700px;
    }

    .modal-content {
      border-radius: 18px;
      overflow: hidden;
    }

    .modal-header {
      padding: 20px 25px;
    }

    .modal-body {
      padding: 20px 25px;
      max-height: 65vh;
      overflow-y: auto;
    }

    .modal-footer {
      padding: 15px 25px;
    }

    /* ==========================
   Search
========================== */

    .modal-body .form-control {
      height: 50px;
      border-radius: 10px;
      box-shadow: none;
    }

    /* ==========================
   Service Card
========================== */

    .service-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 15px;
      transition: .3s;
      cursor: pointer;
    }

    .service-card:hover {
      border-color: #46208f;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    }

    .service-card.selected {
      border-color: #46208f;
      background-color: #f7f4fc;
      box-shadow: 0 4px 15px rgba(70, 32, 143, 0.1);
    }

    .service-card.selected .price {
      background: #46208f;
      color: #fff;
      transition: .3s;
    }

    .service-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .service-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .service-card h5 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .service-card small {
      color: #666;
      display: block;
      margin-bottom: 5px;
    }

    .service-card a {
      color: #28a745;
      text-decoration: none;
      font-size: 14px;
    }

    .price {
      background: #f5f2fb;
      color: #46208f;
      padding: 8px 15px;
      border-radius: 20px;
      font-weight: 600;
      white-space: nowrap;
      transition: .3s;
    }

    #continueBtn:disabled {
      background: #cccccc !important;
      border-color: #cccccc !important;
      cursor: not-allowed;
      opacity: 0.65;
    }

    /* ==========================
   Continue Button
========================== */

    .modal-footer .btn {
      min-width: 140px;
      border-radius: 8px;
    }

    /* ==========================
   Tablet
========================== */

    @media (max-width:991px) {

      .modal-dialog {
        max-width: 95%;
        margin: 20px auto;
      }

      .modal-body {
        max-height: 60vh;
      }

    }

    /* ==========================
   Mobile
========================== */

    @media (max-width:767px) {

      .modal-dialog {
        margin: 10px;
        max-width: 100%;
      }

      .modal-header,
      .modal-body,
      .modal-footer {
        padding: 15px;
      }

      .service-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .service-left {
        width: 100%;
        align-items: flex-start;
      }

      .price {
        margin-top: 15px;
        align-self: flex-end;
      }

      .service-img {
        width: 60px;
        height: 60px;
      }

      .service-card h5 {
        font-size: 16px;
      }

      .service-card small {
        font-size: 13px;
      }

      .modal-footer {
        justify-content: center;
      }

      .modal-footer .btn {
        width: 100%;
      }

    }








    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
    }

    .calendar-day-header {
      text-align: center;
      font-weight: 600;
      color: #666;
      font-size: 13px;
      padding: 5px 0;
      text-transform: uppercase;
    }

    .date-btn {
      height: 48px;
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 8px;
      transition: .2s;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      width: 100%;
    }

    .date-btn:disabled {
      background: #f8f9fa;
      color: #ccc;
      border-color: #eee;
      cursor: not-allowed;
    }

    .date-btn:hover:not(:disabled),
    .date-btn.active {
      background: #46208f;
      color: #fff;
      border-color: #46208f;
    }

    .time-slots {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .time-btn {
      border: 1px solid #ddd;
      background: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      transition: .2s;
      font-weight: 500;
    }

    .time-btn:disabled {
      background: #f8f9fa;
      color: #ccc;
      border-color: #eee;
      cursor: not-allowed;
    }

    .time-btn:hover:not(:disabled),
    .time-btn.active {
      background: #46208f;
      color: #fff;
      border-color: #46208f;
    }

    @media (max-width: 768px) {
      .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
      }
      
      .date-btn {
        height: 40px;
        font-size: 13px;
      }

      .time-btn {
        width: calc(50% - 5px);
        text-align: center;
      }
    }






/* fprm */
#personalModal label{
    font-weight:600;
    margin-bottom:6px;
}

#personalModal .form-control,
#personalModal .form-select{

    height:48px;

    border-radius:10px;

}

#personalModal .modal-body{

    max-height:65vh;

    overflow-y:auto;

}

#personalModal .btn-success{

    background:#46208f;

    border:none;

    padding:10px 30px;

}












