

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

body {
    min-height: 100vh;
    background: #f6f7f9;
    display: block; /* VERY IMPORTANT */
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

body, p, a, span {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}
/* ===== SECTION BACKGROUND ===== */
.packages-section {
    position: relative;
    padding: 80px 0;
    background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470");
    background-size: cover;
    background-position: center;
}

    /* DARK OVERLAY */
    .packages-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(3,42,58,0.7), rgba(10,79,100,0.7) );
        z-index: 0;
    }

/* CONTENT ABOVE OVERLAY */
.carousel-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.carousel-title {
    color: #fff;
    font-size: 28px;
}

.carousel-arrows {
    display: flex;
    gap: 12px;
}

.view {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 18px;
    text-decoration: none;
}

.nav-btn {
    width: 30px;
    height: 30px;
    background: red;
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

/* CARD */
.travel-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
}

/* 📱 Mobile devices */
@media screen and (max-width: 768px) {
    .travel-card {
        background: #fff;
        border-radius: 16px;
        padding: 14px;
    }
}


.image-box {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

/* 📱 Mobile screens only */
@media screen and (max-width: 767px) {
    .image-box {
        background: #fff;
        border-radius: 18px;
        padding: 14px;
        height: 500px !important;
    }
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content p {
    font-weight: 400;
    margin: 15px 0;
    font-size: 13px;
}

.card-actions {
    position: relative;
}

.next-btn {
    border: 1px solid red;
    background: #fff;
    color: red;
    padding: 7px 14px;
    border-radius: 6px;
}

.search-btn {
    position: absolute;
    right: 0;
    background: red;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    margin-top: -35px;
}

.view-btn {
    height: 30px;
    background: red;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
}
/* MOBILE */
@media (max-width: 768px) {
    .swiper-slide {
        width: 100% !important;
    }

    .carousel-title {
        font-size: 22px;
    }

    .search-btn {
        margin-right: 30px;
    }
}






/* ================= BLOG SECTION ================= */
/* ================= BLOG SECTION ================= */
.blog-section {
    padding: 80px 0;
    background: #e3e0e0;
    position: relative;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* title left, arrows right */
    position: relative;
    margin: 25px;
}

    /* title */
    .blog-header h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
    }

/* arrows top-right */
.blog-arrows {
    display: flex;
    gap: 10px;
}

/* buttons */
.blog-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    /* box-shadow:0 6px 18px rgba(0,0,0,.18); */
    font-size: 20px;
    cursor: pointer;
    transition: .25s ease;
}

    .blog-btn:hover {
        background: #0aa6a6;
        color: #fff;
    }

@media(max-width:600px) {
    .blog-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

/* Line stays below */
.blog-line {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
}

/* Slider */
.blog-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.blog-track {
    display: flex;
    gap: 24px; /* spacing between cards */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .blog-track::-webkit-scrollbar {
        display: none;
    }

.blog-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards, 2 gaps */
    background: #fff;
    /* KEEP your existing styles */
    transition: transform .3s ease, box-shadow .3s ease;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: rgba(50, 50, 93, 0.35) 0px 70px 120px -20px, rgba(0, 0, 0, 0.35) 0px 40px 80px -30px;
    }

    .blog-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 6px;
    }

.blog-meta {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #ff7a45;
    margin: 14px 0 6px;
    margin-left: 20px;
}

.blog-card h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    margin-left: 20px;
}

/* subtle hover polish */
.blog-card:hover h3 {
    color: #ff7a45;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
    padding: 20px;
}

.blog-card a {
    display: inline-block;
    padding: 10px 18px;
    background: #ff7a45;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all .3s ease;
    margin-left: 40px;
    margin-bottom: 10px;
}

    .blog-card a:hover {
        background: #8da7ee;
        cursor: pointer;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255, 122, 69, .35);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 22px;
    }

    .blog-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-card {
        text-align: center; /* Center the text horizontally */
        justify-content: center; /* Center the content vertically */
        flex: 0 0 100%; /* Show one card at a time on tablets and mobile */
        width: 100% !important;
    }

    .blog-meta {
        text-align: center; /* Center the meta text */
    }

    .blog-card h3 {
        text-align: center; /* Center the heading */
    }

    .blog-card p {
        text-align: center; /* Center the paragraph */
    }
}




/* for deals  */
:root {
    --dark-teal: #1a3c4a;
    --accent-blue: #88c9e8;
    --text-gray: #555;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* Swiper Container Adjustments */
.swiper {
    width: 100%;
    padding: 20px 0 50px 0;
    position: relative;
}

.deal-card {
    display: flex;
    background: var(--dark-teal);
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Left Side: Text Content */
.card-body {
    flex: 1.2;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

    .card-body h3 {
        font-size: 1.35rem;
        font-weight: 400;
        line-height: 1.4;
        margin: 0;
    }

.divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
    margin: 20px 0;
}

.explore {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Right Side: Image */
.card-img {
    flex: auto;
    background-size: cover;
    background-position: center;
}

/* Navigation Arrows styling from your image */
.swiper-button-next, .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #333 !important;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px;
        font-weight: bold;
    }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .deal-card {
        flex-direction: column;
        height: auto;
    }

    .card-img {
        height: 200px;
        flex: auto;
        order: -1; /* Image on top for mobile */
    }

    .card-body {
        padding: 30px;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none; /* Hide arrows on small screens for better UX */
    }
}
