@import "bootstrap-icons/font/bootstrap-icons.css";

.mainTextPosition {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.114);
    padding: 2vw 3vw;
    color: white;
    width: 90vw;
    max-width: 1200px;
    box-sizing: border-box;
}


.mainTextSize{
    font-family: 'Times New Roman', Times, serif;
    font-size: 8vh;
    font-weight: 900;
}

.no-decoration{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

ol {
    list-style-type: none; /* Remove default numbering */
    counter-reset: item; /* Reset the counter */
    
}

ol li {
    counter-increment: item; /* Increment the counter for each list item */
    margin-bottom: 50px; /* Add some space between items */
    
}

ol li:before {
    content: counter(item); /* Display the counter number */
    font-size: 50px; /* Set the font size for the counter */
    font-weight: bold; /* Optionally, make the numbers bold */
    
}

/*.alignment{
    margin-left: 40px; 
    position:absolute; 
    display:inline;
    padding-top: 5px;
    line-height: 1.5;
    
}*/
.alignment {
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    line-height: 1.5;
    display: block;
    width: 90%;
    max-width: 1200px;
}


.section-bg-color-home{
    background-color: rgba(104, 137, 255, 0.121);

}

/*.review-bg{
    background-color: white;
    border-radius: 10px;
    border-block-start-width: 5px;
    border-style:initial;
    height: 400px;
    margin-left: 300px;

}*/
.review-bg {
    background-color: white;
    border-radius: 10px;
    border-block-start-width: 5px;
    border-style: initial;
    height: 400px;
    margin: 0 auto; /* centers */
    padding: 20px;
    width: 90%; /* auto-resize based on screen */
    max-width: 1200px; /* optional */
}


.footer-bg{
    background-color: #0D2857;
    color: white;
}

ul {
    list-style-type: none; 
    
}

/* drop down list */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 100px;
    padding: 8px;
    border: 1px solid #ccc;
}

.dropdown-content a {
    display: block;
    padding: 4px 0;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

a{
    text-decoration: none;
    color: black
}

.text-justify {
    text-align: justify;
}
.card-package {
    background-color: #e9f5f5;
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.slide-image {
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide-image.active {
    opacity: 1;
    z-index: 2;
}
.carousel-inner {
    direction: rtl;
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

.bus-animation-container {
    height: 60px; /* space above the cards */
    overflow: hidden;
    position: relative;
}

.animated-bus {
    position: absolute;
    top: 0;
    left: -150px; /* start offscreen */
    height: 60px;
    animation: busMove 8s linear infinite alternate;
    z-index: 10;
}

/* Animation keyframes: left to right and back */
@keyframes busMove {
    0% {
        left: -150px;
        transform: scaleX(1); /* facing right */
    }
    50% {
        left: calc(100% + 150px);
        transform: scaleX(1); /* still facing right */
    }
    50.001% {
        transform: scaleX(-1); /* flip to face left */
    }
    100% {
        left: -150px;
        transform: scaleX(-1); /* moving left */
    }
}

.bunny-animation-wrapper {
    height: 100px; /* Limit visible area */
    width: 100px;  /* Optional: fix width if needed */
    overflow: hidden;
    position: relative;
}

.bunny-animation-container {
    position: absolute;
    bottom: -100px;
    right: 0;
    animation: upDownLoop 5s linear infinite;
}

.animated-bunny {
    height: 100px;
    width: auto;
}


@keyframes upDownLoop {
    0% {
        bottom: -100px; /* Fully hidden */
    }
    25% {
        bottom: 0px; /* Just appearing */
    }
    50% {
        bottom: 50px; /* Fully visible and at the top */
    }
    50% {
        bottom: 0px; /* Moving down */
    }
    100% {
        bottom: -100px; /* Hidden again */
    }
}
    .bus-container {
    position: absolute; /* Position it relative to the closest positioned ancestor (.position-relative)*/
    left: 0;
    width: 100%;
    height: 200px; /*Make it cover the full height of its parent*/
    overflow: hidden; /*Hide any part of the bus that goes beyond the container*/
    z-index: 1; /*Set a lower z-index to place it in the background*/
    }
    .red-bus {
    display: block; /* Remove any extra spacing*/
    width: 416px; /*Make the image full width of its container*/
    height: auto;
    object-fit: cover; /*Cover the container, may crop edges*/
    }
.offer-row {
    background: #fff;
    border-left: 6px solid #ff9800;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.offer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
/* Flickity Cell */
.flickity-carousel {
  overflow: hidden;
}
.carousel-cell {
  width: 420px;
  margin-right: 16px;
}
.card-img-wrapper {
  width: 420px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio, fills container */
}
.special-offer-badge { 
    top: 0;
    right: 0;
    font-size: 0.8rem;
    width: auto;
    white-space: normal;
}
.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease; /* Smooth animation */
}

.card-img-top:hover {
    transform: scale(1.05);  /* Zoom in slightly */
    filter: brightness(70%); /* Dim effect */
}
.package-img-shadow {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* soft drop shadow */
  border-radius: 12px; /* optional, smooth edges */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-img-shadow:hover {
  transform: scale(1.02); /* slight zoom on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.pullable-ribbon {
    position: fixed;
    right: 0;
    padding: 12px 20px;
    background-color: #0d6efd;
    color: #fff;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 9999;
    white-space: nowrap;
    top: 50%; /* vertically center on section */
    transform: translateY(-50%) translateX(100%); /* hidden initially */
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.pullable-ribbon.visible {
    transform: translateY(-50%) translateX(0); /* slide in */
}

.pullable-ribbon:hover {
    background-color: #0b5ed7;
}
/* Hide on small screens */
@media (max-width: 767px) {
    .pullable-ribbon {
        display: none !important;
    }
}
.ribbon-icon {
  width: 20px;     /* adjust to desired size */
  height: 20px;    /* keep it square */
  vertical-align: middle; /* aligns with text baseline */
}
.city-forecasts-weekly-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.city-forecasts-weekly-table th,
.city-forecasts-weekly-table td {
    padding: 0.5rem;
    text-align: center;
    vertical-align: middle;
}

.city-forecasts-weekly-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.city-forecasts-weekly-table img.weather-table-icon {
    display: block;
    margin: 0 auto 0.25rem;
}

.city-forecasts-table-weather span {
    display: block;
    font-size: 0.85rem;
}
