body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    

    /* Prevent horizontal scrolling caused by extra space */
}

.container {
    padding-left: 0;
    padding-right: 0;

}

.navbar {
    width: 100%;
    /* Ensure navbar spans full width */
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    box-shadow: none;
    /* Remove shadow for transparency */
    padding: 0 1rem 0 1rem;
}

.fs-xl-5 {
    font-size: 1.25rem;
    /* Matches Bootstrap's fs-5 size */
}


@media (max-width: 992px) {
    .navbar {
        background-color: #ffffffc0;
        /* Replace with desired solid color */
        padding: 0 !important;
    }

    .nav-link {
        color: #000000 !important;
    }

    .navbar-toggler {
        color: rgb(22, 21, 21);
        border-color: rgb(0, 0, 0);
        /* Ensures the border of the button is white */
        margin: 0;
        /* Removes any margin */
        position: absolute;
        top: 2rem;
        right: 1rem;
        z-index: 1031;
        /* Ensures it appears above other elements */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        filter: brightness(-100%);
    }

    .fs-xl-5 {
        font-size: inherit;
        /* Reverts to default size on smaller screens */
    }

    .nav-item {
        margin-left: 1rem;
    }

    .book-now-btn {
        width: fit-content;
        margin: .5rem 0 0 .5rem;
        margin-bottom: 1rem;
        color: #000000 !important;
        border: 1px groove #000000 !important;
        box-shadow: 0px 2px 3px #000000 !important;
    }

    .hero-content {
        margin-top: 75% !important;
    }

    .nav-link::after {
        background-color: #000000 !important;
        transition: width 0.8s ease-out !important;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        margin-top: 50% !important;
    }

}




/* Navbar solid background when scrolled */
/* Scrolled state */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Nav link styles */
.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    position: relative;
}

/* Scrolled state for nav links */
.navbar.scrolled .nav-link {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    color: #000;
    transition: width 0.4s ease-out;

}

.navbar.scrolled .nav-link::after {
    background-color: #000000;
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
.dropdown-item{
    padding: 10px;
    color: #000000;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.dropdown-item:hover{
    color: #ffffff;
    background-color: #3b3b3b;
}
/* Book Now button style */
.book-now-btn {
    background-color: transparent;
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid #ffffff;
}

.book-now-btn.scrolled {
    background-color: #e9f0f8;
    color: #000000 !important;
    border: 1px groove #050505;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 2px 3px #000000;
}

.book-now-btn:hover {
    background-color: #ffffff;
    color: #000000 !important;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 4px 10px #383838;
    transform: scale(1.1);
}

.book-now-btn:active {
    transform: scale(0.9);
    box-shadow: inset 2px 2px 10px 3px #8b8b8b;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire section */
    z-index: -1;
    /* Places the video behind the content */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adds a dark overlay for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensures content is above the video and overlay */
    text-align: center;
    margin-top: 25%;
    bottom: 10rem;
    /* Adjust as needed */
}

.hero-title {
    font-size: 2.5rem;
    font-family: "Libre Baskerville", serif;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f8fd 0%, #e9f0f8 100%);
}

.stats-container {
    text-align: center;
    padding: 40px 0;
}

.stat-item {
    margin: 20px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.welcome-img {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 1);
    /* Add a shadow */
}

.welcome-content {
    text-align: justify;
}

/* Planning Steps */


.step-item {
    margin: 30px 0;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fa-smile.animate {
    animation: bounce 2s infinite;
}

.fa-map-marked-alt.animate {
    animation: flip 2s infinite;
}

.fa-location-dot.animate {
    animation: bounce-in 2s infinite;
}

.fa-gift.animate {
    animation: shake 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }

    50% {
        transform: perspective(400px) rotateY(180deg);
    }

    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.stat-item:hover i {
    animation-play-state: paused;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* ======================================plannings =================================*/

.planning-steps {
    padding: 0px 0;
    background: #f1f5fb;
    display: flex;
    align-items: center;
}


.steps-container {
    background: linear-gradient(135deg, #f6f8fd 0%, #e9f0f8 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.438);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 2px 2px 10px rgb(85, 84, 84), inset 5px 15px 20px rgb(185, 200, 206),
        inset -15px -15px 20px rgb(171, 190, 197);
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6f70c7, #8166c2, #222477);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e2e8f0;
    z-index: -1;
}

.step-item:last-child::before {
    display: none;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
}

.step-icon::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.step-icon:hover::after {
    width: 140px;
    height: 140px;
    opacity: 1;
}

.step-icon i {
    font-size: 40px;
    color: white;
    transition: all 0.5s ease;
}

.step-icon:hover i {
    transform: scale(1.2);
}

.step-item h3 {
    color: #2d3748;
    font-size: 24px;
    margin: 20px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.5s ease;
}

.step-item:hover h3::after {
    width: 100%;
}

.step-item p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.9;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step-item:hover p {
    transform: translateY(0);
    opacity: 1;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.step-icon {
    animation: floating 3s ease-in-out infinite;
}

.step-item:nth-child(2) .step-icon {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) .step-icon {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .steps-container {
        padding: 20px;
    }

    .step-item::before {
        display: none;
    }

    .step-item {
        margin-bottom: 40px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon i {
        font-size: 32px;
    }
}

/* Tour Packages */
.swiper-container {
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
}

.swiper-slide {
    width: 320px;
}

.card {
    transition: transform 0.2s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.btn-book {
    background: #e63946;
    border: none;
    transition: all 0.2s ease;
}

.btn-book:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.price {
    color: #e63946;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 2px 2px 5px rgb(46, 46, 46);
}

.swiper-pagination-bullet-active {
    background: #7ba5ff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 280px;
    }
}

.swiper-slide-duplicate-active,
.swiper-slide-duplicate-next,
.swiper-slide-duplicate-prev {
    transition: opacity 0.3s linear, transform 0.7s ease !important;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}


/* Favorites Section */

.package-container {
    padding: 2rem;
    background: linear-gradient(135deg, #f6f8fd 0%, #e9f0f8 100%);
}

.package-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    background: white;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.788);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.package-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .card-image img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    color: #2c3e50;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.card-body {
    padding: 1.5rem;
    background: white;
}

.card-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.package-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: #ffd700;
}

.book-now-package-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-now-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.book-package-Details-btn {
    width: 100%;
    padding: 12px;
    color: #4f46e5;
    border: 2px groove #4f46e5;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-package-Details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 99, 71, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}


/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 60px 0 20px;
}

footer h4 {
    color: white;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #888;
    text-decoration: none;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Favorites Section */
.favorites-section {
    padding: 80px 0;
    background-color: #ebf2fd;
}

.favorite-card {
    position: relative;
    margin-bottom: 30px;
}

.rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
}

/* ----- Footer Styles---- */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #186aa0 100%);
    color: #f4f4f4;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Add a subtle overlay effect */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

footer * {
    position: relative;
    z-index: 2;
}

footer h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

footer ul li a {
    color: #f4f4f4;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #3498db;
    opacity: 1;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: scale(1.1);
}


/* To Top Button */
.to-top {
    position: fixed;
    bottom: 20px;
    right: 19px;
    background: #56a7dd;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8),
        inset 5px 5px 10px rgba(63, 62, 62, 0.616),
        0 15px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.to-top.show {
    display: flex;
}

.to-top:hover {
    background: #2980b9;
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .to-top {
        right: 10px;
        width: 40px;
        height: 40px;
    }
}


/* Social contact Buttons*/

.social-contact-container {
    position: fixed;
    right: 20px;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;

}

.social-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-contact-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25D366, #128C7E);
    box-shadow: inset 2px 3px 10px #013615;
}

.phone-btn {
    background: linear-gradient(145deg, #4CAF50, #45A049);
    box-shadow: inset 2px 3px 10px #034205;
}

.email-btn {
    background: linear-gradient(145deg, #FF4081, #F50057);
    box-shadow: inset 2px 3px 10px #57031f;
}

.social-contact-btn i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.social-contact-btn:hover {
    transform: scale(1.1) translateZ(20px);
}

@media (max-width: 768px) {
    .social-contact-container {
        right: 10px;
        top: 80%;
    }

    .social-contact-btn {
        width: 40px;
        height: 40px;
    }
}