body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.xyt_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px 5px 50px;
    background: white;
    position: relative;
    box-shadow: 0px 0px 5px #b7b7b7;
}
.xyt_logo img {
    height: 50px !important;
}
.xyt_nav_menu {
    display: flex;
}
.xyt_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.xyt_nav_menu ul li {
    margin: 0 15px;
}
.xyt_nav_menu ul li a {
    text-decoration: none;
    color: rgb(63, 63, 63);
    font-size: 16px;
    font-weight: 600;
}
.xyt_nav_menu ul li a.active {
    border-bottom: 2px solid rgb(63, 63, 63);
}
.xyt_toggle_button {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100000000;
}
.xyt_banner_section {
    position: relative;
    background: url('img/banner02.avif') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
}

.xyt_banner_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.xyt_banner_content {
    position: relative;
    z-index: 1;
}
.xyt_banner_content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}
.xyt_banner_content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.xyt_banner_button {
    background: #d35400;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .xyt_header_container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .xyt_nav_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        padding: 10px 0;
        z-index: 999;
    }
    .xyt_nav_menu ul {
        flex-direction: column;
        align-items: center;
    }
    .xyt_nav_menu ul li {
        margin: 10px 0;
    }
    .xyt_toggle_button {
        display: block;
    }
    .xyt_banner_section {
        height: 300px;
        padding: 10px;
    }
    .xyt_banner_content h1 {
        font-size: 28px;
    }
    .xyt_banner_content p {
        font-size: 16px;
    }
    .display_banner{
        display: none;
      }
      .frm_section{
        margin-top: 140px;
      }
      .xyt_logo img {
        height: 30px !important;
    }
}
.close_button{
    width: 100%;
}

.iconss i{
    font-size:20px;
    color: #fff;
    background-color: rgb(0, 200, 0);
    padding: 9px;
    border-radius: 20px;
}
.numberss_section {
  display: flex;
  align-items: center;
  gap: 10px;
}
.numberss .p-text{
    margin: 2px 0px;
    font-size: 13px;

}
.numberss .p-num{
    margin: 2px 0px;
    font-size: 17px;
    font-weight: 600;
    color: rgb(63, 63, 63);
    color: rgb(0, 200, 0);
}


  .f_contants{
    display: flex;
    justify-content: center;
  }
  .f_contants p{
    background-color: rgb(227, 227, 227);
    padding: 30px;
    width: 90%;
    border-radius: 10px;
    color: #333;
  }





/* ============================
review :first
=========================== */
.review-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.review-card {
    flex: 1 1 calc(25% - 10px);
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.review-logo {
    height: 20px;
    margin-bottom: 10px;
}

.review-stars {
    font-size: 20px;
    color: gold;
    margin-bottom: 5px;
}

.review-text {
    font-size: 14px;
    color: #333;
}

@media (max-width: 1024px) {
    .review-card { flex: 1 1 calc(50% - 10px); }
}

@media (max-width: 600px) {
    .review-card { flex: 1 1 100%; }
}


  /* ==============================
  2 img section
  ============================== */
  .XzYzWlQp_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
}
.XzYzWlQp_card {
    text-align: center;
    max-width: 300px;
}
.XzYzWlQp_iconss {
    height: 40px;
}
.XzYzWlQp_icon {
    height: 60px;
}
.XzYzWlQp_title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}
.XzYzWlQp_text {
    font-size: 14px;
    margin-top: 5px;
    color: #444;
}
.XzYzWlQp_link {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.XzYzWlQp_link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .XzYzWlQp_container {
        flex-direction: column;
        align-items: center;
    }
    .review-container {
        margin-top: 120px;
    }
    
}





/* ================================
2 img section
================================== */

.xzdf876_pop{
  display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
}
  .xj83nd__container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 20px;
      margin-top: 0px;
  }
  .xj83nd__box {
      position: relative;
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      overflow: hidden;
  }
  .xj83nd__box img {
      width: 100%;
      display: block;
  }
  .xj83nd__content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: flex-start;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: #fff;
  }
  .xj83nd__title {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .xj83nd__subtitle {
      font-size: 18px;
      margin-bottom: 15px;
  }
  .xj83nd__btn {
      background: #ffcc00;
      color: #000;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      margin-top: 30px;
  }
  @media (max-width: 768px) {
      .xj83nd__container {
          flex-direction: column;
          align-items: center;
      }
  }

/* =============================
internetion flights
============================= */


.containersss {
    max-width: 1100px;
    margin: 20px auto;
    padding: 10px;
}

.headersss {
    text-align: center;
    margin-bottom: 20px;
}

.deals-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.deals-section {
    flex: 1;
    min-width: 48%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.deals-section img {
    width: 100%;
    height: auto;
}

.deals-section h2 {
    margin: 0;
    background: #0073e6;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.deals-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.deals-table th, .deals-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.deals-table th {
    background: #f4f4f4;
}

.deals-table td {
    vertical-align: middle;
}
.deals-table tr td img{
    height: 50% !important;
    width: 50%;
}

.deals-table tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.deals-table .price {
    color: #28a745;
    font-weight: bold;
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}
.note strong{
    color: red;
    font-weight: 200;
}

@media (max-width: 768px) {
    .deals-section {
        min-width: 100%;
    }
}



/* ========================
internetion 
======================= */
.most-difficult-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
}

.most-difficult-header {
    text-align: center;
    margin-bottom: 20px;
}

.most-difficult-header h1 {
    font-size: 2rem;
    margin: 0;
    color: #333;
}

.most-difficult-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.most-difficult-card {
    flex: 1;
    min-width: 45%;
    max-width: 48%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.most-difficult-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.most-difficult-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.most-difficult-card-content {
    padding: 15px;
}

.most-difficult-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 5px;
    color: #444;
}

.most-difficult-card-action {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.most-difficult-card-action span {
    font-size: 0.9rem;
    color: #888;
}

.most-difficult-card-action a {
    font-size: 0.9rem;
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.most-difficult-card-action a:hover {
    color: #005bb5;
}

.most-difficult-card-action a:after {
    content: '>';
    margin-left: 5px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .most-difficult-card {
        min-width: 100%;
        max-width: 100%;
    }
}

























.Formcontainer {
    max-width: 1200px;
    margin: 0 auto;
  }

  .nav-tabsss {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    background: white;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    width: 60%;
  }

  .nav-tabaa {
    padding: 10px 30px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    flex: 1;
    min-width: 120px;
    transition: all 0.3s;
  }

  .nav-tabaa.active {
    background: #0066cc;
    color: white;
  }

  .booking-formss {
    display: none;
    background: white;
    padding: 24px;
    border-radius: 0 0 4px 4px;
    width: 1100px;
  }

  .booking-formss.active {
    display: block;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    flex: 1 1 200px;
  }

  .radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .radio-group {
color: #000;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }

  .search-btn {
    background: #0066cc;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }

  .search-btn:hover {
    background: #0052a3;
  }

  .phone-input {
    display: flex;
    gap: 10px;
  }

  .country-code {
    flex: 0 0 100px;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
  }

  .advanced-options {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
  }
  @media (max-width: 1200px) {
    .booking-formss {
        display: none;
        background: white;
        padding: 24px;
        border-radius: 0 0 4px 4px;
        width: 100%;
      }
}

  @media (max-width: 768px) {
    .frm_section {
       margin-top: 250px;
      }
    .nav-tabaa {
        padding: 2px 1px;
        min-width: 50px;

      }
  

    .form-group {
      flex: 1 1 100%;
    }

    .form-row {
      gap: 15px;
    }

    .radio-group {
      flex-wrap: wrap;
    }
    .booking-formss {
        display: none;
        background: white;
        padding: 24px;
        border-radius: 0 0 4px 4px;
        width: 100%;
      }
  }