.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #f7800a;
    margin: 0;
    text-align: justify;
}

.crads {
    height: 200px;
}

label.form-label {
    display: block !important;
    margin-bottom: 4px;
    color: #000;
}




/* Section fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Flip-in effect when visible */
.cards.flip-in {
    animation: flipIn 1s forwards;
}

@keyframes flipIn {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Hover effect */
.cards:hover {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 126, 95, 0.5);
    transition: all 0.4s ease;
}

/* Change card text color on hover */
.cards:hover h5,
.cards:hover p {
    color: #fff;
}

.booking-tour {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.27);
    padding: 40px;
    border-radius: 10px !important;
}

.single_feature_card {
    padding: 40px 24px;
    border: 1px solid #fc5b62;
    position: relative;
    z-index: 1;
    background: #fff;
    margin-bottom: 30px;
    height: 350px;
}

.single_feature_card:before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;

    height: 45px;
    content: "";
    background: #fc5b62;
    transition: 0.3s;
    z-index: -1;
}

.single_feature_six_seven_icon .icon {
    font-size: 45px;
    color: #fc5b62;
    transition: 0.5s;
}

.single_feature_card_content h4 {
    transition: 0.5s;
    padding-top: 13px;
}

.single_feature_card_content p {
    padding-top: 8px;
    font-size: 13px;
    transition: 0.5s;
}

.single_feature_card:hover:before {
    width: 100%;
    height: 100%;
    background: #fc5b62;
}

.single_feature_card:hover .single_feature_six_seven_icon .icon,
.single_feature_card:hover .single_feature_card_content h4,
.single_feature_card:hover .single_feature_card_content p {
    color: #fff;
}

.services {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    height: 200px;
}

.carder {
    background: #fc5b62 !important;
    color: white !important;
}

.bg-img-counter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.cards1 {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 270px;
}

.cards1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cards1 img.card-img-top {
    transition: transform 0.4s ease;
}

.cards1:hover img.card-img-top {
    transform: scale(1.05);
}

.cards1 .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.cards1 .btn {
    border-radius: 25px;
    padding: 6px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cards1 .btn:hover {
    background-color: #c82333;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destination Card Style */
.cards2 {
    border: none;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* Stagger animation delay */
.cards2:nth-child(1) {
    animation-delay: 0.1s;
}

.cards2:nth-child(2) {
    animation-delay: 0.2s;
}

.cards2:nth-child(3) {
    animation-delay: 0.3s;
}

.cards2:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover effect */
.cards2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Optional title styling */
.cards2 .card-title {
    color: #fd7e14;
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    animation: fadeInUp 1s ease forwards;
}

.single_feature_card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1057px;
    }
}

/* Slides container */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease-in-out;
}

.slide.slide--current {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Background image */
.slide__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(0.65);
    transition: filter 1s ease;
}

.slide.slide--current .slide__img {
    filter: brightness(0.75);
}

/* Text container styles */
.slide__title,
.slide__desc {
    position: relative;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    max-width: 70%;
    margin-left: 50px;
    font-weight: 700;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.slide__title {
    font-size: 3.5rem;
    margin-bottom: 0.3em;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.5));
}

.slide__desc {
    font-size: 1.5rem;
    line-height: 1.3;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.4));
}

/* Text animation base state */
.slide__title,
.slide__desc {
    opacity: 0;
    transform-origin: center bottom;
    transform: translateY(50px) rotateX(90deg) scale(0.5);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
}

/* Animate when active */
.slide.slide--current .slide__title {
    animation: extremeInTitle 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: 0.3s;
}

.slide.slide--current .slide__desc {
    animation: extremeInDesc 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: 0.8s;
}

/* Keyframes */
@keyframes extremeInTitle {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
        filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) rotateX(0deg) scale(1.05);
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
    }

    80% {
        transform: translateY(5px) rotateX(0deg) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
    }
}

@keyframes extremeInDesc {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(90deg) scale(0.7);
        filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.2));
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) rotateX(0deg) scale(1.02);
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
    }

    80% {
        transform: translateY(4px) rotateX(0deg) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
    }
}

/* Navigation Buttons */
.slidenav {
    position: absolute;
    bottom: 15px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    user-select: none;
    z-index: 10;
}

.slidenav__item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slidenav__item:hover {
    background: rgba(255, 255, 255, 0.65);
}

.slidenav__item::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #111;
    border-right: 3px solid #111;
    margin: auto;
    position: relative;
    top: 10px;
}

.slidenav__item--prev::before {
    transform: rotate(-135deg);
}

.slidenav__item--next::before {
    transform: rotate(45deg);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #fd7e14;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.owl-carousel .owl-dot.active {
    opacity: 1;
    background-color: #d35400;
}

.icons {
    width: 700px;
    height: 900px;
    border-radius: 9px;
    object-fit: fill;
}

.packages {
    text-align: center;
}

.card-images {
    height: 135px !important;
    object-fit: fill;
}


.destinations {
    text-align: center;
}

/* Card flip animation wrapper */
.cards {
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 1s;
    transform-style: preserve-3d;
    position: relative;
}

.cards p {
    font-size: 13.8px !important;
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }
}


.hover-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hover-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #170330ff;
    z-index: -1;
    transition: height 0.5s ease;
}

.hover-card:hover::before {
    height: 100%;
}

.hover-card:hover {
    transform: translateY(-5px);
}

/* Message color default and hover */
.hover-card p {
    color: #000;
    transition: color 0.3s ease;
}

.hover-card:hover p {
    color: #fd7e14;
}

