
/*//////////////////////////////////////////////////////   Hero Css */
.main-hero-slider{
    height:70vh;
    position:relative;
    overflow:visible;
}

.main-hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
    overflow:hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.main-hero-slide.active{ opacity:1; z-index:1; }

.main-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    padding:0 8%;
    display:flex;
    align-items:center;
}

.main-hero-content{ max-width:56.25rem; margin:0 auto; width:100%; }

.main-hero-heading{
    text-transform:capitalize;
    font-size:2.5rem;
    font-weight:700;
    line-height:1.3;
    margin-bottom:1rem;
    color:var(--white-color);
}

.main-hero-subheading{
    font-size:1rem;
    font-weight:400;
    margin-bottom:2rem;
    color:var(--white-color);
}

/* Search Box */
.main-hero-search-box{
    background:var(--white-color);
    border-radius:0.75rem;
    padding:0;
    box-shadow:0 0.5rem 1.5rem rgba(0,0,0,.2);
    max-width:59.375rem;
    width:100%;
    overflow:visible;
    position:relative;
    z-index:10000;
}

.main-hero-input{ border-right:0.0625rem solid #e5e7eb; position:relative; }
.main-hero-input:last-of-type{ border-right:none; }

.main-hero-input .form-control{
    border:none;
    box-shadow:none;
    padding:1.125rem 1.125rem 1.125rem 3rem;
    font-size:0.9375rem;
    height:3.5rem;
}

.main-input-icon{
    position:absolute;
    top:50%;
    left:1.125rem;
    transform:translateY(-50%);
    color:var(--gray-color);
    font-size:1.1rem;
}

.main-hero-btn{
    background:var(--primary-color);
    color:var(--white-color);
    padding:0 1.75rem;
    height:3.5rem;
    font-weight:600;
    border-radius:0;
    transition:background .3s;
    white-space:nowrap;
    display:flex;
    align-items:center;
    justify-content:center;
}
.main-hero-btn:hover{ background:var(--secondary-color); }

/* Destination Dropdown */
.main-hero-search-box .main-dropdown-menu-list{
    position:absolute;
    top:calc(100% + 0.375rem);
    background:var(--white-color);
    border:0.0625rem solid #e5e7eb;
    border-radius:0.125rem;
    display:none;
    box-shadow:0 0.5rem 1.25rem rgba(0,0,0,.12);
    z-index:9999 !important;
    overflow:hidden;
    width:25rem;
    height:21.875rem;
}

.main-hero-search-box .main-dropdown-header{
    font-weight:500;
    padding:0.4375rem 0.625rem;
    border-bottom:0.0625rem solid #eee;
    color:var(--dark-color);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:0.8125rem;
}
.main-hero-search-box .main-dropdown-header .main-close-btn{
    font-size:1.125rem;
    cursor:pointer;
    color:var(--gray-color);
    transition:color .2s;
}
.main-hero-search-box .main-dropdown-header .main-close-btn:hover{ color:var(--dark-color); }

.main-hero-search-box .main-dropdown-menu-list ul{
    margin:0;
    padding:0;
    list-style:none;
    max-height:25rem;
    overflow-y:auto;
}
.main-hero-search-box .main-dropdown-menu-list ul li a{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:0.625rem 1rem;
    text-decoration:none;
    border-bottom:0.0625rem solid #f2f2f2;
    transition:background .25s, padding-left .25s;
}
.main-hero-search-box .main-dropdown-menu-list ul li a .main-destination-name{
    font-size:0.9375rem;
    font-weight:600;
    color:var(--dark-color);
}
.main-hero-search-box .main-dropdown-menu-list ul li a .main-destination-desc{
    font-size:0.8125rem;
    font-weight:400;
    color:#6b7280;
}
.main-hero-search-box .main-dropdown-menu-list ul li a:hover{
    background:#f5f5f5;
    padding-left:1.25rem;
}
.main-hero-search-box .main-dropdown-menu-list ul li a:hover .main-destination-name{
    color:var(--secondary-color);
}
.main-hero-search-box .main-dropdown-menu-list .main-no-results{
    padding:0.75rem 1rem;
    font-size:0.875rem;
    color:#6b7280;
    text-align:left;
}

.main-hero-search-box .main-dropdown-menu-list ul::-webkit-scrollbar{ width:0.375rem; }
.main-hero-search-box .main-dropdown-menu-list ul::-webkit-scrollbar-thumb{
    background:var(--primary-color); border-radius:0.25rem;
}
.main-hero-search-box .main-dropdown-menu-list ul::-webkit-scrollbar-thumb:hover{
    background:var(--primary-hover);
}
.main-hero-search-box .main-dropdown-menu-list ul::-webkit-scrollbar-track{ background:var(--secondary-color); }

/* Calendar */
.main-hero-calendar{
    position:absolute;
    top:calc(100% + 0.375rem);
    left:0;
    background:var(--white-color);
    border:0.0625rem solid #e5e7eb;
    border-radius:0.5rem;
    box-shadow:0 0.5rem 1.25rem rgba(0,0,0,.12);
    z-index:9999;
    display:none;
    width:25rem;
}

.main-hero-calendar .main-calendar-header{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    padding:0.625rem 0.875rem;
    font-weight:600;
    color:var(--dark-color);
}
.main-hero-calendar .main-calendar-header .main-nav-icon{
    cursor:pointer;
    font-size:1.125rem;
    font-weight:700;
    color:var(--secondary-color);
    user-select:none;
    background-color:var(--bg-color);
    padding:0.625rem 0.875rem;
}
.main-hero-calendar .main-calendar-header .main-close-btn{
    font-size:1.25rem;
    cursor:pointer;
    color:var(--gray-color);
}
.main-hero-calendar .main-calendar-header .main-close-btn:hover{ color:var(--dark-color); }

.main-hero-calendar .main-calendar-body{ padding:0.625rem; }

.main-hero-calendar .main-calendar-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    text-align:center;
    gap:0.3125rem;
    font-size:0.8125rem;
    font-weight:600;
    color:var(--gray-color);
    margin-bottom:0.375rem;
}
.main-hero-calendar .main-calendar-days div{
    color:var(--white-color);
    background-color:var(--gray-color);
    padding:0.1875rem;
    border-radius:0.25rem;
}

.main-hero-calendar .main-calendar-dates{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:0.25rem;
}
.main-hero-calendar .main-calendar-dates .empty-date{
    pointer-events:none; cursor:default; background:transparent !important;
}
.main-hero-calendar .main-calendar-dates div{
    text-align:center;
    padding:0.5rem 0;
    font-size:0.875rem;
    border-radius:0.25rem;
    cursor:pointer;
    transition:background .2s;
    color:var(--gray-color);
}
.main-hero-calendar .main-calendar-dates .past-date{
    position:relative; color:#999; pointer-events:none; cursor:default;
}
.main-hero-calendar .main-calendar-dates .past-date::after{
    content:""; position:absolute; top:50%; left:10%; width:80%; height:0.09375rem;
    background:red; transform:translateY(-50%); border-radius:0.125rem;
}
.main-hero-calendar .main-calendar-dates div:not(.past-date):hover{
    background:var(--primary-color); color:var(--white-color);
}
.main-hero-calendar .main-calendar-footer{
    padding:0.625rem 0.875rem;
    border-top:0.0625rem solid #eee;
    font-size:0.875rem;
    color:var(--dark-color);
}

/* Traveler Dropdown */
.main-traveler-dropdown{
    position:absolute;
    top:calc(100% + 0.375rem);
    left:0;
    background:var(--white-color);
    border:0.0625rem solid #e5e7eb;
    border-radius:0.375rem;
    box-shadow:0 0.5rem 1.25rem rgba(0,0,0,.15);
    z-index:9999;
    width:20rem;
    display:none;
    padding:0;
    font-size:0.875rem;
}

.main-traveler-dropdown .main-dropdown-header{
    font-weight:600;
    padding:0.625rem 0.875rem;
    border-bottom:0.0625rem solid #eee;
    color:var(--dark-color);
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.main-traveler-dropdown .main-dropdown-header .main-close-btn{
    font-size:1.125rem; cursor:pointer; color:var(--gray-color); transition:color .2s;
}
.main-traveler-dropdown .main-dropdown-header .main-close-btn:hover{ color:var(--dark-color); }

.main-traveler-dropdown .main-traveler-option{
    display:flex; justify-content:space-between; align-items:center;
    padding:0.75rem 1rem; border-bottom:0.0625rem solid #f2f2f2;
}
.main-traveler-dropdown .main-traveler-option span{
    font-size:0.875rem; color:var(--dark-color);
}

.main-traveler-dropdown .main-counter{ display:flex; align-items:center; gap:0.5rem; }

.main-counter-btn{
    width:1.75rem; height:1.75rem;
    border:0.0625rem solid #ddd;
    background:#f9f9f9;
    border-radius:0.25rem;
    font-size:1rem;
    font-weight:700;
    line-height:1;
    text-align:center;
    cursor:pointer;
    color:var(--dark-color);
    transition:background .2s;
}
.main-counter-btn:hover{ background:var(--secondary-color); color:var(--white-color); }
.main-counter-btn:disabled{ opacity:.4; cursor:not-allowed; }
.main-traveler-dropdown .main-counter span{ min-width:1.25rem; text-align:center; font-weight:600; }

.main-traveler-footer{
    padding:0.625rem 0.875rem; display:flex; justify-content:flex-end;
}
.main-traveler-footer .main-done-btn{
    background:var(--primary-color); color:var(--white-color); border:none;
    padding:0.375rem 1.125rem; border-radius:0.25rem; font-size:0.875rem; font-weight:600; transition:background .3s;
}
.main-traveler-footer .main-done-btn:hover{ background:var(--secondary-color); }

/* Hero Info */
.main-hero-info-section{
    background-color:var(--secondary-color);
    /*padding:0.6rem 0;*/
    padding: 0;
    margin-top:-1rem;
    margin-bottom:2rem;
    position:relative;
    z-index:1;
}
.main-hero-info-col{ padding:1rem; }
.main-hero-info-col:nth-child(2),
.main-hero-info-col:nth-child(3){ border-left:0.0625rem solid rgba(255,255,255,.46); }

.main-hero-info-heading{
    font-size:1rem;
    font-weight:700;
    color:var(--white-color);
    margin-bottom:0.5rem;
}
.main-hero-info-text{
    font-size:0.7rem;
    color:#b0b8c6;
    line-height:1.5;
    margin-bottom: 0px !important;
}

/* Layering */
.main-dropdown-menu-list,
.main-hero-calendar,
.main-traveler-dropdown{ z-index:10001 !important; }


/*//////////////////////////////////////////////////////   Package box css Css */


.Packages-box {
    background: var(--white-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.Packages-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 1.375rem rgba(0, 0, 0, 0.12);
}

.Packages-box-image-container {
    position: relative;
    padding-bottom: 66.66%;
}

/* new */
.Packages-box-image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* bottom area ka 25% dark hoga */
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    pointer-events: none; /* overlay click ko block na kare */
}

.Packages-box-image-slider {
    position: absolute;
    inset: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.Packages-box-image-slider::-webkit-scrollbar {
    display: none;
}

.Packages-box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.Packages-box-heart-icon-container {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 1.6rem;
    height: 1.6rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.Packages-box-heart-icon {
    color: var(--white-color);
    font-size: 0.9rem;
}

.Packages-box-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.Packages-box-dot {
    width: 0.625rem;
    height: 0.625rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

.Packages-box-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.Packages-box-content {
    padding: 0 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.Packages-box-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Packages-box-flag-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.03125rem;
}

.Packages-box-flag-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.2);
}

.Packages-box-stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.Packages-box-star-rating {
    color: var(--primary-color);
    font-size: 1rem;
}

.Packages-box-rating-value {
    color: var(--dark-color);
    font-weight: 600;
}

.Packages-box-rating-count {
    color: var(--gray-color);
}
.Packages-box-title-container {
    position: relative; /* parent must be relative for absolute children */
    width: 100%;       /* example: constrain the width */
}
.underline-hover:hover h2{
    text-decoration: underline !important;
}

.Packages-box-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    min-height: 3rem;
    margin-top: -75px;
    /*padding: 8px;*/
    padding: 0.6rem 1.2rem;
    position: absolute;


}

.Packages-box-subtitle {
    color: var(--gray-color);
    font-size: 0.8rem;
    margin: 0;
}

.Packages-box-price-section {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
    align-items: center;
    /*padding-top: 0.25rem;*/
    /*padding: 0.25rem 1.25rem;*/
    padding: 0 1.25rem;
}

.Packages-box-meta-info {
    font-size: 0.8rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;

}

.Packages-box-price-details {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.Packages-box-price-label {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
    display: flex;
    justify-content: start;
}

.Packages-box-price {
    font-size: 1.4rem;
    font-weight: 700;

}

.Packages-box-line{
    border: 1px solid gray;

}
/*//////////////////////////////////////////////////////   Top Countries Css */
.top-rated-section {
    background: var(--bg-color);
    padding: 2rem 1rem;
    border-radius: 0.5rem; /
}

.top-rated-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: capitalize;
    color: var(--secondary-color);
}

/* Tabs */
.top-rated-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.top-rated-tabs li {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background: var(--white-color);
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary-color);
    border: 0.0625rem solid #e5e7eb;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-rated-tabs li.active,
.top-rated-tabs li:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.top-rated-card {
    border-radius: 0.5rem;
    overflow: hidden;
    display: none;
    margin-bottom: 2rem;
}

.top-rated-card.active {
    display: block;
}

.top-rated-inner {
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--secondary-color);
    color: var(--white-color);
}

.top-rated-content {
    flex: 1;
    padding: 2rem;
}

.top-rated-bg {
    flex: 1;
    background: center/cover no-repeat;
    position: relative;
    min-height: 18.75rem;
}

.top-rated-overlay {
    position: absolute;
    inset: 0;
    background: rgba(243, 151, 53, 0.1);
}

.top-rated-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white-color);
}

.top-rated-rating {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.top-rated-stars {
    color: var(--primary-color);
}

.top-rated-rating a {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 0.3125rem;
}

.top-rated-badge {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 0.375rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.top-rated-content p {
    font-size: 0.95rem;
    margin: 1rem 0;
    color: #f3f4f6;
}

.top-rated-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.top-rated-info {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.top-rated-info div {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.top-rated-info i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.top-rated-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-rated-btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    outline: none;
    box-shadow: none;
}

.top-rated-btn-primary {
    background: var(--primary-color);
    color: var(--white-color) !important;
}

.top-rated-btn-primary:hover {
    color: var(--primary-color) !important;
    background: var(--white-color) !important;
}

.top-rated-btn-secondary {
    background: var(--white-color);
    color: var(--secondary-color);
}

.top-rated-btn-secondary:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

/*//////////////////////////////////////////////////////   Vision Css */
.vision-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.15);
    display: flex;
}

.vision-tall {
    height: 100%;
    min-height: 18.75rem !important;
}
.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.vision-card:hover .vision-img {
    transform: scale(1.05);
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.7) 100%);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.vision-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.313rem;
}

.vision-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}


/*//////////////////////////////////////////////////////   Who we are Css */
.who-we-are-section {
    background: url('https://www.transparenttextures.com/patterns/zebra-2.png');
    background-size: contain;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
}

.who-we-are-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.who-we-are-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.9375rem;
}

.who-we-are-highlight {
    color: var(--primary-color);
    font-weight: 600;
    border-left: 0.25rem solid var(--primary-color);
    padding-left: 0.625rem;
    margin-bottom: 1.25rem;
}

.who-we-are-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.who-we-are-btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: 0.3s;
}
.who-we-are-btn-primary:hover {
    background: var(--primary-hover);
}

.who-we-are-image {
    position: relative;
    min-height: 31.25rem;
}

.who-we-are-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}

.who-we-are-small-img {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 16.25rem;
    height: 12.5rem;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 0.375rem solid var(--white-color);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.25);
}

.who-we-are-features p {
    margin-bottom: 0.625rem;
    font-weight: 500;
    color: var(--dark-color);
}
/*//////////////////////////////////////////////////////   testimonials Css */

.testimonials-section {
    background: url("https://www.transparenttextures.com/patterns/cartographer.png"),
    var(--bg-color);
    background-repeat: repeat;
    background-size: auto;
}

.testimonials-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.review-card {
    background: var(--white-color);
    border-radius: 0.75rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.review-card p {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}












