/* Global Styles */


/* Section Styling */
.background-overlaylight2 {
    background-image: url('/uploads/0000/7/2024/08/30/mytourbg.png');
    background-color: #F9F4F0;
    background-repeat: no-repeat;
  
    background-position: right; /* centers the image */
    padding: 40px 0;
}


.elementor-section {
    position: relative;
}

.elementor-inner-section {
    margin: 40px auto;
}

/* Icon Box Styling */
.elementor-widget-icon-box {
    display: flex;
    align-items: flex-start;
}

.elementor-icon-box-icon {
    margin-right: 15px;
}

.elementor-icon-box-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.elementor-icon-box-description {
    font-size: 16px;
    color: #333;
}

/* Image Section */
section img {
    max-width: 100%;
    height: auto;
}

/* Counter Section */
.counter-section div {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Tabs Styling */
.elementor-tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 2px solid #e5e5e5;
}

.elementor-tab-title {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.elementor-tab-title.active {
    color: #F94319;
    border-bottom-color: #F94319;
}

.elementor-tab-content {
    display: none;
    padding: 20px;
}

.elementor-tab-content.active {
    display: block;
}

/* Grid for Items */
.babe_items_grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.babe_items {
    width: 30%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.babe_items img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.babe_items .item_text {
    margin-top: 10px;
}

.babe_items .item_text a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.babe_items .item_text span {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    color: #F94319;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .elementor-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .babe_items_grid {
        flex-direction: column;
    }

    .babe_items {
        width: 100%;
    }
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Example to set height to viewport height */
  }
  
  .slider-wrapper {
    display: flex;
 
    width: 100%;
    height: 100%;
  }
  
  .slider-slide {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
  }
  
  .slider-slide:nth-child(1),
  .slider-slide:nth-child(2) {
    left: 0;
    top: 0;
    height: 700px;
    width: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }
  
  .slider-slide:nth-child(3) { left: 50%; }
  .slider-slide:nth-child(4) { left: calc(50% + 220px); }
  .slider-slide:nth-child(5) { left: calc(50% + 440px); }
  .slider-slide:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
  
  .slider-content {
    width: min(30vw,400px);
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    font: 400 0.85rem helvetica,sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);
    opacity: 0;
    display: none;
  }
  
  .slider-title {
    font-family: 'arial-black';
    text-transform: uppercase;
  }
  
  .slider-description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
  }
  
  .slider-button {
    width: fit-content;
    background-color: rgba(0,0,0,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
  
  .slider-slide:nth-of-type(2) .slider-content {
    display: block;
    animation: show 0.75s ease-in-out 0.3s forwards;
  }
  
  @keyframes show {
    0% {
      filter: blur(5px);
      transform: translateY(calc(-50% + 75px));
    }
    100% {
      opacity: 1;
      filter: blur(0);
    }
  }
  
  .slider-nav {
    position: relative;
    bottom: 2rem;
    left: 50%;

    z-index: 5;
    user-select: none;
  }
  
  .slider-nav-btn {
    background-color: rgba(255,255,255,0.5);
    color: rgba(0,0,0,0.7);
    border: 2px solid rgba(0,0,0,0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-nav-btn:hover {
    background-color: rgba(255,255,255,0.3);
  }
  
  @media (width > 650px) and (width < 900px) {
    .slider-content {
      .slider-title { font-size: 1rem; }
      .slider-description { font-size: 0.7rem; }
      .slider-button { font-size: 0.7rem; }
    }
    .slider-slide {
      width: 160px;
      height: 270px;
      .slider-slide:nth-child(3) { left: 50%; }
      .slider-slide:nth-child(4) { left: calc(50% + 170px); }
      .slider-slide:nth-child(5) { left: calc(50% + 340px); }
      .slider-slide:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
  }
  
  @media (width < 650px) {
    .slider-content {
      .slider-title { font-size: 0.9rem; }
      .slider-description { font-size: 0.65rem; }
      .slider-button { font-size: 0.7rem; }
    }
    .slider-slide {
      width: 130px;
      height: 220px;
      .slider-slide:nth-child(3) { left: 50%; }
      .slider-slide:nth-child(4) { left: calc(50% + 140px); }
      .slider-slide:nth-child(5) { left: calc(50% + 280px); }
      .slider-slide:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }
  }
  
  .custom-tab-container {
    margin: 20px 0;
}

/* Styles for the custom tab buttons */
.custom-tab-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.custom-tab-buttons button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-tab-buttons button.custom-active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.custom-tab-content {
    display: none;
}

/* Show the active custom tab content */
.custom-tab-content.custom-active {
    display: block;
}

.custom-tour-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.custom-tour-image img {
    width: 100%;
    height: auto;
}

.custom-tour-details {
    padding: 10px;
}

.custom-tour-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-tour-price {
    font-size: 16px;
}

.custom-price {
    font-weight: bold;
}

.custom-sale-price {
    color: #e74c3c;
    margin-right: 10px;
}

.custom-regular-price {
    color: #7f8c8d;
    text-decoration: line-through;
}
