@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../image/home_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.recommendation-icon {
    transition: transform 0.3s ease;
}

.recommendation-card:hover .recommendation-icon {
    transform: rotateY(180deg);
}

.testimonial-bg {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}

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

.main_color {
    background:#bc7b19
}

.text_color {
    color:#bc7b19
}


button {
cursor: pointer;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.bg-icon {
    background-color: rgba(234, 192, 119, 0.3);
}

.custom-pd {
    padding-top: 6rem;
}

.bg-sand-light {
    background-color: rgba(255, 235, 200, 0.3);
}

.frosted-glass {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-itinerary {
    /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("image/home_bg.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 235, 200, 0.3);
}