.img-logo {
  width: 100px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.div-shadow {
  display: block;
  background: rgba(0, 0, 0, 0.2);
  border-style: none;
  border-radius: 0px;
  z-index: 1;
  padding: 5px;
}

.title-shadow {
  display: block;
  background: rgba(244, 112, 74, 0.2);
  border-style: none;
  border-radius: 0px;
  z-index: 1;
  padding: 5px;
}

.leadform {
    /* Existing Desktop Styles */
    margin-top: -90px;
    z-index: 100;
    position: relative;
    border: 1px solid #f4704a;
    border-radius: 10px;
    width: 450px; /* Fixed width for desktop */
    margin-left: auto; /* Used in conjunction with margin-right: auto to center on desktop */
    margin-right: auto;
    /* Adding basic padding/shadow for aesthetics */
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kwl {
  padding-top: 48px;
}

@media (max-width: 640px) {
  .kwl {
  padding-top: 20px;
}
}

@media (max-width: 640px) {
    .leadform {
        width: 100%; 
        margin-left: auto;
        margin-right: auto;
        margin-top: -120px; /* Adjusted to a smaller negative margin */
    }
}

.btn-whatsapp {
  background-color: #00d757;
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #00a884;
  color: #fff;
}

.btn-theme {
  color: #fff;
  background-color: #f4704a;
  border-color: #f4704a;
}

.btn-theme:hover {
  color: #fff;
  background-color: #a3380a;
  border-color: #a3380a;
}

.ptb-100 {
  padding: 7rem 0;
}

  .next-section {
    height: 34rem;
  }

  .next-section-ahead {
    height: 34rem;
  }

@media only screen and (min-width: 768px) {
  header.masthead {
    padding-top: 6rem !important;
    padding-bottom: 8rem !important;
  }

  .next-section {
    height: 34rem;
  }

  .next-section-ahead {
    height: 34rem;
  }

  .header-btn {
    text-align: right !important;
  }

  div#sticky-footer {
    display: none;
  }


}

@media (min-width:375px) and (max-width:767px) {
  .next-section {
    height: 35rem;
  }

  .next-section-ahead {
    height: 30rem;

  }

}

@media only screen and (max-width: 768px) {
  .theme-header {
    text-align: center !important;
  }

  .header-btn {
    text-align: center !important;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  div#sticky-footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    background: #fff;
    width: 100%;
    z-index: 999;
    display: block !important;
    padding: 5px 0;
  }


}

.img_size img {
  height: 218px;
  width: 100%;
  object-fit: cover;
}

.img_size.post {
  height: 218px;
  width: 100%;
  object-fit: cover;
}

.border {
  display: block;
  background: rgba(red, green, blue, alpha);
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 0px;
  z-index: 9;
}

.col-lg-3 h3 {
  margin-top: 1em;
}

.padding {
  padding: 0.5rem 0;
}

.text-theme {
  color: #f4704a;
  font-size: 20px;
}

.bar {
  height: 4px;
  width: 85px;
  background: #f4704a;
  margin: 10px auto 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #ffffff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}

.text-justify {
  text-align: justify;
}

.border {
  min-height: 600px;
}

.features-icons-item {
  background: #fff;
  border-radius: 20px;
  padding-bottom: 10px;
}

.img-text-center-verticaly {
  display: flex;
  align-items: center;
  text-align: left;
}

.img-text-center-verticaly img {
  width: 90px;
  height: 90px;
}

/* Styling for the Image Container to establish positioning context */
.image-container {
    position: relative; /* Essential for positioning the badges absolutely within it */
    display: block !important; /* Override the d-flex to ensure full width for the image */
}

.image-container img {
    display: block;
    width: 100%;
    height: 260px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Base styling for both badges */
.duration-badge,
.hotel-type-badge {
    position: absolute;
    background-color: #f4704a; /* Use your theme color, or a bright red like in the image */
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
    z-index: 10; /* Ensure they are above the image */
}

/* Specific positioning for the Duration Badge (assuming this is your original badge) */
.duration-badge {
    bottom: 10px; /* Position from the bottom */
    right: 10px; /* Position from the right */
    
    /* Apply a slight shadow for better visibility, if needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Specific positioning for the NEW Hotel Type Badge */
.hotel-type-badge {
    top: 10px; /* Position from the top */
    right: 10px; /* Position from the right */
    
    /* Adjust these values to prevent overlapping or to match your design */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.icon-name-wrap {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 15px;
        /* Ensure the container uses Bootstrap grid functionality */
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }

    .icon-title {
        /* Use flexbox to center content vertically/horizontally */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5px; /* Add slight padding around each column content */
    }

    .icon-amenity {
        /* 1. Define fixed size for a perfect circle */
        width: 60px;
        height: 60px;
        
        /* 2. Create the circular border */
        border: 2px solid #f4704a; /* Customize color as needed */
        border-radius: 50%;
        
        /* 3. Ensure the image fits nicely inside the border */
        padding: 5px; /* Padding pushes the image in, making the icon smaller than the circle */
        object-fit: contain; /* Ensures the image scales properly without stretching */
        
        /* 4. Spacing */
        margin-bottom: 5px;
        transition: transform 0.3s ease; /* Add hover effect transition */
    }
    
    .icon-amenity:hover {
        transform: scale(1.05); /* Optional: slight zoom effect on hover */
    }

    .icon-title h6 {
        color: #f4704a;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }

    /* --- New Price Section Styles --- */
    .price-container {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Align everything to the left */
        padding: 10px 0;
        margin-top: 15px;
        border-top: 1px solid #eee; /* Optional separator line */
    }

    .price-details {
        display: flex;
        align-items: center; 
        gap: 10px; 
    }
    
    /* Wrapper for original price */
    .original-price-wrap {
        display: inline-flex;
        align-items: baseline;
        font-size: 18px;
        color: #888;
        text-decoration: line-through;
        font-weight: 500;
        line-height: 1;
    }

    /* Wrapper for current price and the new savings text */
    .current-price-group {
        display: flex; /* Use flex to stack elements */
        flex-direction: column;
        align-items: flex-start; /* Align stacked items to the left */
        margin-right: -7px;
    }

    .current-price-wrap {
        display: inline-flex;
        align-items: baseline;
        font-size: 28px;
        color: #ff4d4d; /* Bright red for the current offer price */
        font-weight: 700;
        line-height: 1;
        margin-bottom: 3px; /* Space between price and saved text */
    }

    /* Style for the currency symbol inside the wrap */
    .price-currency {
        font-size: 1em; /* Inherit size */
        margin-right: 2px;
    }

    /* Style for the number part of the price */
    .price-value {
        line-height: 1;
    }


    .per-person {
        font-size: 14px;
        color: #555;
        font-weight: 400;
        white-space: nowrap; 
    }

    /* New style for the savings amount, placed under the current price */
    .save-amount-small {
        font-size: 15px; /* Small font size */
        font-weight: 600;
        color: #38c172; /* Green for 'Save' text */
        line-height: 1;
    }

    @media (max-width: 767px) {
        .price-container {
            /* Center the entire pricing block */
            justify-content: center;
            width: 100%;
        }

        .price-details {
            /* DO NOT WRAP: keep all price/text elements on one line */
            flex-wrap: nowrap; 
            /* Center all elements within the price-details container */
            justify-content: center;
            width: auto;
            gap: 10px; /* Use desktop gap */
        }
        
        /* 1. Make the text larger */
        .original-price-wrap { 
            font-size: 20px; 
        }
        
        .current-price-group {
            /* Keep it centered but give it higher priority for space */
            align-items: center; /* Center the text inside the group (price on top, save below) */
            margin-right: 0; 
        }
        
        .current-price-wrap { 
            font-size: 36px; /* Significantly larger main price */
        }
        
        .save-amount-small { 
            font-size: 16px; /* Make savings text visible */
        }
        
        .per-person { 
            font-size: 18px; /* Larger 'Per Person' text */
        }
    }

    /* --- Text Box Constraint (New Rule) --- */
.text-constrainer-box {
    max-width: 800px;
    margin-left: auto; /* Center the box */
    margin-right: auto; /* Center the box */
    padding: 0 15px; /* Add horizontal padding for small screens */
}

/* --- Travel Card Structure Fixes (from previous conversation - retained for completeness) --- */
.travel-card-item {
    display: flex;
    flex-direction: column;
    height: 100%; 
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 650px;     
    max-width: 100%;  
    margin-left: auto; 
    margin-right: auto; 
    flex-shrink: 0;   
}

.travel-card-content {
    padding: 10px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.travel-card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.travel-card-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5px; 
}

.travel-card-icon-img {
    width: 30px; 
    height: 30px;
    object-fit: contain;
    margin-bottom: 3px;
}

.travel-card-icon-text {
    font-size: 0.7rem; 
    margin: 0;
    line-height: 1.1;
    font-weight: 500;
}

.travel-card-content-main {
    flex-grow: 1; 
}

.travel-card-price-section {
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.travel-card-price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px; 
}

.travel-card-original-price-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 10px;
}

.travel-card-offer-text {
    font-size: 0.75rem;
    color: #6c757d; 
    line-height: 1;
}

.travel-card-original-price-wrap {
    font-size: 1rem;
    text-decoration: line-through;
    color: #dc3545; 
    line-height: 1;
}

.travel-card-current-price-group {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.travel-card-current-price-wrap {
    font-size: 1.5rem; 
    font-weight: bold;
    color: #0d6efd; 
    line-height: 1;
}

.travel-card-save-amount {
    font-size: 0.75rem;
    color: #28a745; 
    font-weight: bold;
    line-height: 1;
}

.travel-card-per-person {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: normal;
    align-self: flex-end; 
}

.travel-card-btn-enquire {
    width: 100%;
    margin-top: 5px; 
}

    