
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 0px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: auto;
        z-index: 1;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 0px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(10, 27, 39, 0.308)), url(../img/bred.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/
@media (max-width: 768px) {
    .navbar-brand img {
        height: 45px;
    }
}
.travel-hero {
    position: relative;
}

.hero-img {
    height: 85vh;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.247), rgba(0, 0, 0, 0.082));
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px;
}

.enquiry-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.enquiry-box h4 {
    font-weight: 700;
}

.carousel-thumbs {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
}

.carousel-thumbs img.active,
.carousel-thumbs img:hover {
    opacity: 1;
    border-color: #0d6efd;
}
.country-category {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* Card */
.country-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* ALWAYS visible overlay */
.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.2),
        transparent
    );
    color: #fff;
    text-align: center;
    opacity: 1;              /* 🔥 Always visible */
    transform: none;         /* Remove hover movement */
}

.country-overlay h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.country-overlay span {
    font-size: 13px;
    opacity: 0.9;
}

/* Hover Effects */
.country-card:hover img {
    transform: scale(1.15);
}

.country-card:hover .country-overlay {
    opacity: 1;
}

.country-card:hover {
    transform: translateY(-12px);
}

/* Neon Glow Colors */
.neon-blue:hover { box-shadow: 0 0 25px rgba(13,110,253,0.9); }
.neon-pink:hover { box-shadow: 0 0 25px rgba(214,51,132,0.9); }
.neon-green:hover { box-shadow: 0 0 25px rgba(25,135,84,0.9); }
.neon-orange:hover { box-shadow: 0 0 25px rgba(253,126,20,0.9); }
.neon-purple:hover { box-shadow: 0 0 25px rgba(111,66,193,0.9); }
.neon-black:hover { box-shadow: 0 0 25px rgba(11, 9, 14, 0.9); }
.neon-red:hover { box-shadow: 0 0 25px rgba(247, 12, 44, 0.9); }

/* Mobile Slider */
@media (max-width: 768px) {
    .country-row {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .country-row > div {
        flex: 0 0 160px;
        scroll-snap-align: center;
    }
}
.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transition: all 0.4s ease;
}

.offer-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    z-index: 2;
}

/* Glass Overlay */
.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.offer-overlay h5 {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

/* Hover Effects */
.offer-card:hover img {
    transform: scale(1.12);
}

.offer-card:hover .offer-overlay {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
}
.rayaa-marquee {
    padding: 28px 0;
    background: linear-gradient(135deg, #0b1d2a, #102b3f, #143d59);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 18px;
    padding: 14px 26px;
    border-radius: 35px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.35),
        inset 0 0 0 rgba(255,255,255,0.3);

    transition: all 0.4s ease;
    position: relative;
}

/* Package count */
.marquee-item span {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
}

/* Glow on hover */
.marquee-item:hover {
    transform: translateY(-3px) scale(1.06);
    background: rgba(255,255,255,0.28);
    box-shadow:
        0 15px 45px rgba(0,0,0,0.5),
        0 0 25px rgba(0,170,255,0.7);
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile speed adjustment */
@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 18s;
    }
}
.featured-destinations {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}
.package-card:hover .overlay {
    background: rgba(0,0,0,0.55);
}
.package-card:hover .card-title,
.package-card:hover .card-text {
    transform: translateY(-5px);
    transition: transform 0.3s;
}
.btn-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.destination-tabs .tab-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.destination-tabs .tab-btn.active,
.destination-tabs .tab-btn:hover {
    background: #ffc107;
    color: #fff;
    border-color: #ffc107;
}

.tab-content {
    display: none;
    animation: fadeUp 0.4s ease;
}

.tab-content.active {
    display: block;
}

.destination-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h6 {
    padding: 12px;
    margin: 0;
    font-weight: 600;
}

.destination-card i {
    color: #000;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Image Hover Effect */
.about-us .about-img {
    transition: transform 0.4s, box-shadow 0.4s;
}
.about-us .about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Button Hover */
.btn-hover {
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

/* Scroll Fade In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.package-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.15);
transition:.3s;
}
.package-card:hover{
transform:translateY(-10px);
}
.package-img{
position:relative;
}
.package-img img{
width:100%;
height:230px;
object-fit:cover;
}
.discount{
position:absolute;
top:15px;
left:15px;
background:#d4af37;
color:#fff;
padding:5px 12px;
border-radius:20px;
font-size:12px;
}
.timer{
position:absolute;
bottom:15px;
left:15px;
background:rgba(0,0,0,.6);
color:#fff;
padding:4px 10px;
border-radius:15px;
font-size:12px;
}
.rating{
color:#f4b400;
font-size:14px;
}
.package-body{
padding:20px;
}
.price{
font-weight:700;
color:#4a2f0f;
display:block;
margin:8px 0;
}
.section-heading{
    overflow:hidden;
}

.animated-title{
    font-size:42px;
    font-weight:700;
    color:#000;
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1.2s ease forwards;
}

.animated-title span{
    color:#d4af37;
}

.title-line{
    width:0;
    height:4px;
    background:#d4af37;
    margin:15px auto 0;
    animation:lineGrow 1.2s ease forwards;
    animation-delay:0.6s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes lineGrow{
    to{
        width:120px;
    }
}

/* Mobile responsive */
@media(max-width:768px){
    .animated-title{
        font-size:28px;
    }
}
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("../img/vietnam-ha-long-bay.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* Small tagline */
.hero-tagline {
    font-style: italic;
    font-size: 18px;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

/* Main heading */
.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Author text */
.hero-author {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-author small {
    opacity: 0.85;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #cab817;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }
}
.last-minute-deals {
    padding: 80px 0;
    background: #f8fafc;
}

.deal-header {
    text-align: center;
    margin-bottom: 50px;
}

.deal-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.deal-header p {
    color: #6b7280;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.deal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.deal-card:hover {
    transform: translateY(-6px);
}

/* Badge */
.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.deal-card.highlight .deal-badge {
    background: #f97316;
}

/* Image */
.deal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Content */
.deal-content {
    padding: 18px;
}

.deal-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.deal-duration {
    font-size: 13px;
    color: #6b7280;
}

.deal-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 12px 0;
    color: #374151;
}

/* Footer */
.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-price del {
    font-size: 13px;
    color: #9ca3af;
}

.deal-price strong {
    font-size: 18px;
    color: #000;
}

.deal-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.deal-btn:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .deal-grid {
        grid-template-columns: 1fr;
    }
}
.custom-package {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.custom-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Content */
.custom-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.custom-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #4338ca;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.custom-content p {
    color: #374151;
    margin-bottom: 20px;
    font-size: 16px;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.custom-features li {
    font-size: 15px;
    margin-bottom: 10px;
}

/* Highlight box */
.custom-highlight {
    background: #fff;
    padding: 18px;
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Form Box */
.custom-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.custom-form-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.custom-form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.custom-form-box input,
.custom-form-box select,
.custom-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.custom-form-box input:focus,
.custom-form-box select:focus,
.custom-form-box textarea:focus {
    outline: none;
    border-color: #fdc50d;
}

/* Button */
.custom-form-box button {
    background: linear-gradient(135deg, #000, #2563eb);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.custom-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.form-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-grid {
        grid-template-columns: 1fr;
    }

    .custom-content h2 {
        font-size: 32px;
    }
}
.testimonials-premium {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
}

.testi-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.testi-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testi-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.testi-header p {
    color: #6b7280;
}

/* Grid */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.testi-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
.counter-section {
    font-family: 'Poppins', sans-serif;
}
.counter-item h2 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 5px;
}
.counter-item p {
    font-size: 16px;
    color: #555;
}
footer a:hover {
    color: #ffc107;
    transition: 0.3s;
}
footer hr {
    margin-top: 30px;
    margin-bottom: 30px;
}
#google_translate_element {
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#google_translate_element img {
  width: 20px;
  height: 20px;
}
