
:root {
    --primary-blue: #1a0b4d;
    --accent-cyan:  #ffc107;
    --white: #ffffff;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/*═══════════════════════════════════════════════════
 TOP NAVIGATION BAR 
 ═══════════════════════════════════════════════════*/
.top-bar {
    background-color: #0a1d37;
    color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-item {
    display: flex;
    align-items: center;
}
.info-divider {
    color: rgba(255, 255, 255, 0.3);
}
/* Social Media Boxes */
.social-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.3s;
}
.fb { background-color: #3b5998; }
.ig { background-color: #b500ac; }
.tt { background-color: #03111c; }

.social-box:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}
@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center !important;
        gap: 10px;
    }
    .top-bar-right {
        margin-top: 5px;
    }
}
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════
 MAIN NAVBAR  
═══════════════════════════════════════════════════ */
.main-nav {
    position: absolute;
    width: 100%;
    top: 0; 
    z-index: 1500;
    padding: 10px 0;
    backdrop-filter: blur(15px);
}
@media (min-width: 992px) {
    .main-nav {
        top: 40px;
        background: rgba(255, 255, 255, 0.1);
    }
}
.main-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
/* Active page */
.nav-link.active-page {
    color: #ffc107 !important; 
    font-weight: 600;         
    border-bottom: 3px solid #f8e9bd; 
    padding-bottom: 5px;       
}
/* ✅ FIXED MOBILE MENU */
@media (max-width: 991px) {
    .navbar-collapse {
        background: transparent;  /* 🔥 FIX */
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    .main-nav {
       background-color: #0f043a !important;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}
.navbar-toggler {
    position: relative;
    z-index: 2000 !important;
    color: rgba(249, 248, 231, 0.521);
}
/* BOOK NOW BUTTON */
.book-now-btn {
    background-color: transparent !important;
    color: #1a0b4d !important;          
    padding: 8px 25px !important; 
    border: 2px solid #ffffff !important;     
    border-radius: 50px;                
    font-weight: 700 !important;       
    transition: all 0.3s ease-in-out;  
    margin-left: 15px;                  
    text-shadow: none !important;      
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}
.book-now-btn:hover {
    background-color: var(--accent-cyan) !important; 
    color: #1a0b4d !important;                     
    transform: translateY(-2px);                    
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 2px solid #1a0b4d !important; 
}
@media (max-width: 991px) {
    .book-now-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════
 HERO SLIDER SECTION 
 ═══════════════════════════════════════════════════ */
#heroSection { 
    position: relative; 
}
.carousel-item {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}
@media (max-width: 768px){
    .carousel-item{
        height: 70vh;
        min-height: 350px;
    }
}
.carousel-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
/*STATIC SEARCH BAR */
.static-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100%;
    text-align: center;
    pointer-events: none; 
}
.static-content-overlay * { 
    pointer-events: auto; 
}
.static-content-overlay h1 {
    color: var(--white);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.search-wrapper {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.search-input {
    border: none;
    padding: 15px 25px;
    flex: 1;
    outline: none;
    font-size: 16px;
    color: #000000 !important;
}
.search-btn {
    background-color: var(--accent-cyan);
    color: var(--primary-blue);
    border: none;
    padding: 0 35px;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}
.search-btn:hover {
    background-color: #04073b;
    color: white;
}
@media (max-width: 576px){
.search-wrapper{
    flex-direction: column;
    border-radius: 20px;
}
.search-input{
    width:100%;
    padding:14px;
}
.search-btn{
    width:100%;
    padding:12px;
    margin-top:5px;
}
}
.carousel-control-prev, .carousel-control-next { 
    z-index: 1600; 
}
@media (max-width: 991px) {
    .top-nav { display: none; }
    .main-nav { 
        position: relative; 
        top: 0; 
        background: var(--primary-blue); 
    }
    .static-content-overlay h1 { font-size: 2.5rem; }
}

/*═══════════════════════════════════════════════════
INTRO SECTION 
═══════════════════════════════════════════════════ */
.intro-container {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}
/* Left Content */
.extreme-tours {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-title {
    font-size: 52px;
    font-weight: 800;
    color: #0a1d37;
    line-height: 1.1;
    margin: 20px 0 40px;
}

/* Middle Image Section */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.image-arch-wrapper:hover .arch-image {
    transform: scale(1.05);
}
.image-arch-wrapper {
    position: relative;
    text-align: center;
}

.arch-image {
    width: 320px;
    height: 500px;
    border-radius: 160px 160px 160px 160px; 
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     transition: transform 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

/* Badge stays in front */
.round-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background-color: #002d62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    text-align: center;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10; /* badge stays in front */
    overflow: visible;
     transition: transform 0.3s ease, background 0.3s ease;
}
.round-badge:hover {
    transform: translateX(-50%) scale(1.1);
    background: var(--accent-cyan);
    color: #fff;
}

/* Right Content */
.side-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a1d37;
}

.side-desc {
    color: #7a7a7a;
    line-height: 1.6;
    margin: 20px 0;
}

/* Experience Badge */
.exp-badge {
    background: #f7efd3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.exp-badge i {
    font-size: 30px;
    color: #6c757d;
}

.features-list {
    list-style-type: disc;
    padding-left: 20px;
}
.features-list li {
    opacity: 0; 
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards; 
}
/* Stagger the animation for each li */
.features-list li:nth-child(1) { animation-delay: 0.5s; }
.features-list li:nth-child(2) { animation-delay: 0.6s; }
.features-list li:nth-child(3) { animation-delay: 0.7s; }
.features-list li:nth-child(4) { animation-delay: 0.8s; }
.features-list li:nth-child(5) { animation-delay: 0.9s; }
.features-list li:nth-child(6) { animation-delay: 1s; }

/* ═══════════════════════════════════════════════════
DESTINATION SECTION
═══════════════════════════════════════════════════ */
.dest-section {
    padding: 80px 0;
    background: #fff;
}

.dest-section h5 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6c757d;
    text-transform: uppercase;
}

.dest-section h2 {
    font-size: 60px !important;
    font-weight: 800;
    color: #0a1d37;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif; 
    font-size: 36px;
}

/*EXPLORE BUTTON */
.btn-explore {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: #0a1d37;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0a1d37;
}

.btn-explore:hover {
    background-color: #0a1d37;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*GRID ITEM HEIGHTS */
.v-long { height: 450px; }
.h-short { height: 217px; }

.dest-item {
    position: relative;
    overflow: hidden; 
    border-radius: 12px;
    cursor: pointer;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-item:hover img {
    transform: scale(1.1) translateX(-5px); 
}

/*OVERLAY & CATEGORY TAG */
.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.dest-item:hover .dest-overlay { opacity: 1; }

.dest-name {
    color: white;
    font-weight: 700;
    font-size: 20px;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.dest-item:hover .dest-name { transform: translateY(0); }

.dest-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/*MOBILE RESPONSIVE*/
@media (max-width: 768px) {
    .text-right { text-align: center !important; } 
    .v-long, .h-short { height: 350px !important; }
}

/*═══════════════════════════════════════════════════
     PACKAGES SECTION
═══════════════════════════════════════════════════*/
/* Initial state: hidden + shifted down */
.tour-header .tour-label,
.tour-header .main-title,
.tour-header .sub-text,
.tour-header .slider-controls {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s forwards;
}

/* Stagger each element */
.tour-header .tour-label {
    animation-delay: 0.2s;
}
.tour-header .main-title {
    animation-delay: 0.4s;
}
.tour-header .sub-text {
    animation-delay: 0.6s;
}
.tour-header .slider-controls {
    animation-delay: 0.8s;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tour-section {
    background: #e1f7ff;
   padding: 60px 0;
}

/* TITLE */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 56px);
}

.accent {
    color: #ffc107 !important; 
    font-style: italic;
}

/* CARD */
.tour-card {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.tour-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* CONTENT */
.card-content {
    position: absolute;
    bottom: 0;
    padding: 25px;
    color: #fff;
}

/* BUTTON */
.details-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
}

/* ✅ MOBILE FIX (KEY PART) */
@media (max-width: 767px) {

    /* show only 1 card per slide */
    .carousel-item .col-md-4:not(:first-child) {
        display: none;
    }

    .tour-card {
        height: 400px;
    }

    .tour-header {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* ═══════════════════════════════════════════════════
next-destination 
═══════════════════════════════════════════════════ */
.next-destination-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    clear: both; 
    display: block;
}

/* Common Card Styles */
.countdown-card-new,
.destination-banner-new {
  position: relative;
    min-height: 550px; 
    height: auto; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    display: flex;
    align-items: center; 
}
.countdown-card-new img,
.destination-banner-new img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    z-index: 0;
}

/* Dark Overlay for Banner */
.destination-banner-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
    object-fit: cover;
}

/* --- Left Countdown Card Inner --- */
.countdown-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.timer-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.t-box span {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.t-box small {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Right Banner Content --- */
.banner-content-new {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    color: #fff;
    max-width: 100%;
}

.banner-content-new h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.banner-content-new h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Buttons Styling --- */
.btn-explore-white,
.btn-book-now {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-explore-white { background: #fff; color: #000; }
.btn-book-now { background: #099806; color: #fff; }

.btn-explore-white:hover { background: #063b85; color: #fff; transform: translateY(-3px); }
.btn-book-now:hover { background: #fff; color: #099806; transform: translateY(-3px); }

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .countdown-card-new, 
    .destination-banner-new { 
        min-height: 450px; 
    }
    .banner-content-new h2 { font-size: 36px; }
}

@media (max-width: 767px) {
    .next-destination-section { 
     padding: 80px 0;
    background-color: #fff;
    position: relative;
    clear: both; 
    display: block;
    width: 100%;
    z-index: 5;
        
    }
    /* Stack the cards properly */
    .countdown-card-new { 
        min-height: 350px; 
        margin-bottom: 20px; 
    }
    .destination-banner-new { 
        min-height: 400px; 
        padding: 60px 20px; /* Add padding so text doesn't hit edges */
    }   
    .banner-content-new { 
        padding: 0; 
        text-align: center; 
    }   
    .banner-content-new h2 { 
        font-size: 28px; 
    }
    .banner-btns { 
        justify-content: center; 
        flex-direction: column; /* Stack buttons on very small screens */
        align-items: center;
    }
    .btn-explore-white, .btn-book-now {
        width: 100%; /* Full width buttons for easier tapping */
        max-width: 250px;
    }
    .promo-desc { 
        font-size: 14px; 
        margin-left: auto;
        margin-right: auto;
    }
}

/* ════════════════════════════════════════════════
latest updates
═══════════════════════════════════════════════════*/
.latest-stories-section {
    background-color: #ecf1fd;
}
/* Featured Video Styling */
.featured-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Small Video Side List */
.video-side-list {
    max-height: 500px; 
    overflow-y: auto; 
    padding-right: 10px;
}

/* Scrollbar Styling for Side List */
.video-side-list::-webkit-scrollbar { width: 5px; }
.video-side-list::-webkit-scrollbar-thumb { background: #140240; border-radius: 10px; }
.small-video-item {
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}
.small-video-item:hover {
    border-color: #160a56;
    background: #e2e4fe;
    border-radius: 10px;
}
.thumb-box {
    position: relative;
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.thumb-content h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

/*═══════════════════════════════════════════════════
footer
═══════════════════════════════════════════════════*/
.main-footer {
    background-color: #0a1d37 !important;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}
.footer-text, .footer-copy {
    font-size: 14px;
    line-height: 1.8;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #ffc107; 
    padding-left: 5px;
}
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 10px 15px;
}
.newsletter-form .form-control::placeholder {
    color: #adb5bd;
}
.footer-gallery img {
    cursor: pointer;
    transition: 0.3s;
}
.footer-gallery img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #adb5bd;
}
@media (max-width: 768px) {
    .footer-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
}
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.btn-float:hover {
  transform: translateY(-3px);
}
.whatsapp {
  background: #199e4a;
}
.top-btn {
  background:  #ffc107;
  color: #1b0d4b;
  border: none;
}