    /* Booking section  Style  eng ai starts here  */


    .booking-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 50px;
      gap: 40px;
    }

    .booking-form {
      width: 500px;
    }

    .booking-form h2 {
      font-family: 'Brush Script MT', cursive;
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
    }

    .booking-form input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .booking-form button {
      width: 100%;
      background-color: orange;
      border: none;
      padding: 12px;
      color: white;
      font-weight: bold;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
    }

    .booking-form button:hover {
      background-color: darkorange;
    }

    .map-container iframe {
      width: 500px;
      height: 400px;
      border: 0;
      border-radius: 10px;
      padding-top: 13%;
    }

      /* Our Customer  eng ai*/

      .testimonials {
        padding: 50px 20px;
        text-align: center;
      }
      
      .testimonials h2 {
        font-family: 'Brush Script MT', cursive;
        font-size: 28px;
        margin-bottom: 40px;
      }
      
      /* Container-ka flexible ah */
      .testimonial-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 30px;
      }
      
      /* Sanduuqyada testimonials-ka */
      .testimonial-box {
        background: #222;
        color: white;
        padding: 20px;
        width: 100%;
        max-width: 450px;
        min-height: 200px;
        border-radius: 10px;
        text-align: left;
        box-sizing: border-box;
      }
      
      .testimonial-box h4 {
        margin-top: 10px;
        color: white;
      }
      
      /* Sawirrada avatar */
      .avatars {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
      }
      
      .avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 5px solid transparent;
        object-fit: cover;
        transition: border 0.3s ease;
      }
      
      .avatar.active {
        border-color: orange;
      }
      
      /* dhibcaha navigation */
      .nav-dots {
        text-align: center;
        margin-top: 10px;
      }
      
      .nav-dots span {
        display: inline-block;
        width: 15px;
        height: 15px;
        background: orange;
        border-radius: 50%;
        margin: 0 5px;
        opacity: 0.5;
        transition: opacity 0.3s ease;
      }
      
      .nav-dots .active {
        opacity: 1;
      }
   