
.package{
    /* border: 2px solid black; */
    display: flex;
    width: 100%;
    /* margin: 15px 0px; */
}
.package-card a{
    margin: 5px 0px;
    background-color:#ffbe42;
    color: #093fb4;
    font-weight:550;
    width: 100%;
    border: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.package-card li a{
    background-color: white;
    font-size: smaller;
}
.package-card li a:hover{
    font-size: smaller;
}
.package-card a:hover{
    color: #093fb4;
    background-color: #ffbe42;
    font-size: 18px;
}
.package-card p{
    font-weight: 350;
    font-size: smaller;
}
.package-card h3{
    font-size: 25PX;
    /* font-weight: bold; */
    color: #093fb4;
}
.package-itinerary{
    background-color: #ffbe42;
    height: 300px;
    justify-content: center;
}
.nav-pills a{
    color:#093fb4;
    font-weight: bold;
    font-size: medium;
    height: 50px;
    width: 220px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.nav-pills a:hover{
    background-color: #ffbe42;
    color:#093fb4;
}
.scrollspy-example h4{
    color:#093fb4;
    font-weight: bold;
}
.itinerary_list li{
    background-color: #ffbe42;
    color: #093fb4;
    border-radius: 5px;
    padding: 2px 8px;
}
.carousel-inner img{
    border-radius: 10px;
}
.basic_pack{
    flex-direction: column; 
    top: 0;
    position: sticky; 
    padding: 20px 0px;
    height: 650px;
}
.basic_pack li{
    background-color: white;
    font-size: medium;
}
.breadcrumb{
    /* height: 30px; */
    background-color: white;
    align-items: center;
    justify-content: center;
    /* font-weight: bold; */
    /* margin-top: 8px; */
    /* border: 2px solid #ffbe42; */
}
.breadcrumb a{
    text-decoration: none;
}
video{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 480px) {
    .package-card h3 {
        font-size: 20px;
    }
    
    .package-card a {
        height: 40px;
        font-size: 13px;
    }
    
    .package-card a:hover {
        font-size: 14px;
    }
    
    .nav-pills a {
        height: 40px;
        font-size: 13px;
    }
    
    .package-itinerary {
        padding: 12px;
        min-height: 200px;
    }
    
    .basic_pack {
        padding: 12px;
    }
    
    .itinerary_list li {
        padding: 5px 8px;
        font-size: 13px;
    }
}
/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
    .package-card a,
    .nav-pills a {
        min-height: 44px;
        font-size: 16px;
    }
}
/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .package {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .package-card {
        flex: 1;
        min-width: 300px;
    }
    
    .nav-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-pills a {
        flex: 1;
        min-width: 200px;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .package {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .package-card {
        margin-bottom: 20px;
        padding: 15px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    .package-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .package-card a {
        height: 45px;
        font-size: 14px;
        margin: 8px 0;
    }
    
    .package-card a:hover {
        font-size: 15px;
    }
    
    .nav-pills {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-pills a {
        width: 100%;
        max-width: none;
        margin: 3px 0;
        height: 45px;
        font-size: 14px;
    }
    
    .package-itinerary {
        min-height: 250px;
        padding: 15px;
        margin: 15px 0;
    }
    
    .basic_pack {
        position: relative;
        top: auto;
        padding: 15px;
        min-height: auto;
        margin: 15px 0;
    }
    
    .itinerary_list li {
        padding: 6px 10px;
        font-size: 14px;
        margin: 3px 0;
    }
    
    .breadcrumb {
        flex-direction: column;
        text-align: center;
        padding: 8px;
    }
    
    .breadcrumb a {
        margin: 2px 0;
        display: block;
    }
}

