.trust-strip {
    padding: 36px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eef1f6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
 .explore-video {
      height: 300px;
      object-fit: cover;
    }
.trust-item i {
    font-size: 26px;
    color: var(--green);
    flex-shrink: 0;
}

.trust-item h6 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--blue);
}

.trust-item p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 1199.98px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* about.css */

.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -34px;
    left: -26px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 6px 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

.about-badge i {
    font-size: 26px;
    color: var(--red);
}

.about-badge span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .about-badge {
        left: 0;
        bottom: -20px;
        padding: 14px 18px;
        max-width: 200px;
    }

    .about-image-wrap {
        margin-bottom: 36px;
    }
}


/* travel.css */

.travel-type-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease;
}

.travel-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.travel-type-card.type-blue {
    border-top-color: var(--blue);
}

.travel-type-card.type-red {
    border-top-color: var(--red);
}

.travel-type-card.type-green {
    border-top-color: var(--green);
}

.type-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 22px;
}

.type-blue .type-icon {
    background: var(--blue);
}

.type-red .type-icon {
    background: var(--red);
}

.type-green .type-icon {
    background: var(--green);
}


.travel-type-card h4 {
    margin-bottom: 14px;
    font-size: 21px;
}

.travel-type-card p {
    font-size: 14.5px;
    margin: 0;
}



/* package.css  */

.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

.package-card img {
    height: 250px;
    object-fit: contain;
}

.package-card .btn {
    border-radius: 30px;
    padding: 8px 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}


/* .discover-vietnam.css */

.discover-vietnam h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.discover-vietnam h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.discover-vietnam p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.discover-vietnam img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.discover-vietnam img:hover {
    transform: scale(1.03);
}

.discover-vietnam .btn {
    padding: 10px 25px;
    border-radius: 30px;
}


/* places */

.places-section {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
}

.place-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.place-card img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
}

.place-content h2 {
    color: #d62828;
    margin-bottom: 10px;
    font-size: 32px;
}

.place-content p {
    color: #333;
    font-size: 20px;
    line-height: 1.5;
}

@media(max-width:768px) {
    .place-card {
        flex-direction: column;
        text-align: center;
    }

    .place-card img {
        width: 100%;
        height: 220px;
    }

    .place-content h2 {
        font-size: 26px;
    }

    .place-content p {
        font-size: 18px;
    }
}



/* .spotlight-section */

.spotlight-section {
    padding-top: 0;
}

.spotlight-card {
    background-color: var(--blue);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.spotlight-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.spotlight-body {
    padding: 46px 44px;
}

.spotlight-body .hero-eyebrow {
    background: rgba(255, 255, 255, .12);
    color: #ffd9d9;
}

.spotlight-body h3 {
    color: var(--white);
    font-size: clamp(22px, 3vw, 30px);
    margin: 16px 0 14px;
    line-height: 1.3;
}

.spotlight-body p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 22px;
}

.spotlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 11px;
}

.spotlight-list li {
    color: var(--white);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-list i {
    color: #7fe3b4;
}

/* used by both hero and spotlight badges */
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #ffd9d9;
    background: rgba(207, 46, 46, .25);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

@media (max-width: 767.98px) {
    .spotlight-body {
        padding: 34px 26px;
    }
}



/* testimonial */


.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 46px;
    max-width: 680px;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 34px;
    color: var(--green);
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
}

.testimonial-author h6 {
    font-size: 15px;
    margin: 0;
}

.testimonial-author span {
    font-size: 12.5px;
    color: var(--text-muted);
}

.testimonial-control {
    width: auto;
    opacity: 1;
    top: auto;
    bottom: -10px;
}

#testimonialCarousel .carousel-control-prev {
    left: 0;
}

#testimonialCarousel .carousel-control-next {
    right: 0;
}

.hero-arrow-sm {
    width: 42px;
    height: 42px;
    background: var(--bg-soft-blue);
    border: 1.5px solid #d9e2ee;
    color: var(--blue);
}

.hero-arrow-sm:hover {
    background: var(--blue);
    color: var(--white);
}

#testimonialCarousel {
    position: relative;
    padding: 0 60px;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(4px);
    transition: all .3s ease;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 32px 24px;
    }

    #testimonialCarousel {
        padding: 0 46px;
    }
}


/* enquiry */



.enquiry-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.enquiry-info {
    background: linear-gradient(155deg, var(--blue), var(--blue-dark));
    padding: 50px 42px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-info h2 {
    color: var(--white);
    font-size: clamp(24px, 3vw, 32px);
    margin: 14px 0 16px;
}

.enquiry-info h2 span {
    color: #7fe3b4;
}

.enquiry-info p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
}

.enquiry-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.enquiry-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
}

.enquiry-contact-list i {
    color: var(--red);
    font-size: 17px;
}

.enquiry-form-wrap {
    padding: 50px 44px;
}

.enquiry-form-wrap .form-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--blue);
    margin-bottom: 6px;
}

.enquiry-form-wrap .form-control,
.enquiry-form-wrap .form-select {
    border: 1.5px solid #e1e7ef;
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    font-size: 14.5px;
}

.enquiry-form-wrap .form-control:focus,
.enquiry-form-wrap .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(6, 139, 80, .15);
}

.enquiry-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-alert.success {
    background-color: #e3f7ed;
    color: var(--green);
    border: 1px solid #b9eccf;
}

.enquiry-alert.error {
    background-color: #fdeaea;
    color: var(--red);
    border: 1px solid #f7c5c5;
}

@media (max-width: 767.98px) {
    .enquiry-info {
        padding: 38px 28px;
    }

    .enquiry-form-wrap {
        padding: 38px 24px;
    }
}


/* video */


.video-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.video-box {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.video-box video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.video-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

@media (max-width: 991px) {
    .video-box video {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .video-box {
        margin-bottom: 20px;
    }

    .video-box video {
        height: 220px;
    }
}





/* banner css code  */



/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section { padding: 0; margin-top: calc(-1 * var(--header-height)); }

.hero-carousel { height: 100vh; min-height: 520px; }
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide{
    background-color: #000; /* or your preferred color */
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,43,79,.86) 0%, rgba(16,43,79,.55) 45%, rgba(16,43,79,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: var(--header-height);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffd9d9;
  background: rgba(207, 46, 46, .25);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 span { color: #7fe3b4; }
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(4px);
  transition: all .3s ease;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 8%; opacity: 1; }
.hero-carousel .carousel-control-prev:hover .hero-arrow,
.hero-carousel .carousel-control-next:hover .hero-arrow {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.hero-indicators { bottom: 25px; }
.hero-indicators [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.55);
  border: none;
  opacity: 1;
  margin: 0 5px;
}
.hero-indicators .active { background-color: var(--red); width: 26px; border-radius: 6px; }

/* ==========================================================
   HERO RESPONSIVE
========================================================== */

/* Laptop */
@media (max-width: 1199px) {

    .hero-carousel{
        height:85vh;
    }

    .hero-content{
        max-width:560px;
    }

    .hero-content h1{
        font-size:48px;
    }
}

/* Tablet */
@media (max-width:991px){

    .hero-section{
        margin-top:0;
    }

    .hero-carousel{
        height:75vh;
        min-height:600px;
    }

    .hero-slide{
        background-position:center center;
        justify-content:center;
        text-align:center;
    }

    .hero-overlay{
        background:rgba(16,43,79,.70);
    }

    .hero-content{
        max-width:100%;
        padding:120px 20px 60px;
    }

    .hero-content p{
        max-width:100%;
        margin:0 auto 25px;
    }

    .hero-cta{
        justify-content:center;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next{
        width:10%;
    }
}

/* Mobile */
@media (max-width:767px){

    .hero-carousel{
        height:65vh;
        min-height:520px;
    }

    .hero-slide{
        background-position:center;
    }

    .hero-content{
        padding:100px 15px 40px;
    }

    .hero-eyebrow{
        font-size:11px;
        padding:5px 14px;
        margin-bottom:15px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.25;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-cta{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .hero-cta .btn{
        width:230px;
    }

    .hero-arrow{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .hero-indicators{
        bottom:12px;
    }
}

/* Small Mobile */
@media (max-width:575px){

    .hero-carousel{
        height:60vh;
        min-height:470px;
    }

    .hero-content{
        padding:9px 15px 30px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-cta .btn{
        width:100%;
        max-width:260px;
    }

    /* Hide arrows on very small screens */
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next{
        display:none;
    }

    .hero-indicators{
        bottom:8px;
    }
}

/* ============ Page hero backgrounds & package images (moved from inline styles) ============ */


