/* ===== RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
}

/* ===== GLOBAL ===== */
a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: #3586ff;
}

li {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}


/* Fullscreen loader container */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(2, 35, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner animation */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid rgba(2, 35, 79, 0.528);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

/* Spin keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide loader after page loads */
body.loaded #loader {
    display: none;
}



/* ===== Reset ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}



/* ===== Header ===== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;

    background: #142749;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    z-index: 1000;
}

/* ===== Logo ===== */

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== Menu ===== */

.menu,
.mid {
    display: flex;
    gap: 35px;
    list-style: none;

}

.mid {
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, Helvetica, sans-serif;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

/* Underline Animation */

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #3586ff;
    transition: .3s;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== Button ===== */

.btn {
    text-decoration: none;
    color: white;
    background: #3586ff;

    padding: 10px 25px;
    border-radius: 30px;

    transition: .3s;
}

.btn:hover {
    background: white;
    color: #3586ff;
}

/* ===== Hamburger ===== */

.menu-btn {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile */
@media (max-width:900px) {

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .mid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 15%;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;

        background: #142749;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: .4s ease;
        z-index: 1000;
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        font-size: 22px;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

}
/*=====home=====*/
/* carousel */
.carousel {
    height: 107.8vh;
    margin-top: -50px;
    width: 100%;
    overflow: hidden;
    position: relative;

}


.carousel img {
    filter: brightness(0.5) contrast(1.2);
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 100%;
    max-width: 80%;
    left: 50%;
    text-align: left;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .des{
    padding-right: 20%;
    font-size: 20px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #3586ff;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff4f4;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
}

.arrows button {
    background-color: #3586ff;;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}

.arrows button:hover {
    background-color: #eee;
    color: black;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */


.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des
 {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}



/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 54px;
    background-color: #3586ff;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}
/* trips */
.title {
    text-align: center;
}

.title h4 {
    display: inline-block;
    padding: 20px;
    color: black;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}


.card-sliders {
    overflow: hidden;
    height: 95vh;
}

.card-sliders .container {
    height: 100% !important;
}

.card-sliders .container .row {
    height: 100%;
}

.card-sliders .card-decks .card-deck {
    display: none;
}

.card-sliders .card-decks .card-deck.deck-active {
    display: flex;
}

.card-sliders .card-decks .card-deck .card {
    font-size: 0.8rem;
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 20px 2px #181A28;
    color: #FFF;
    height: 300px;
    overflow: hidden;
}

.card-sliders .card-decks .card-deck .card h1,
.card-sliders .card-decks .card-deck .card h2,
.card-sliders .card-decks .card-deck .card h3,
.card-sliders .card-decks .card-deck .card h4,
.card-sliders .card-decks .card-deck .card h5,
.card-sliders .card-decks .card-deck .card h6 {
    font-weight: bold;
}

.card-sliders .card-decks .card-deck .card a {
    color: #3BCEAC;
}

.card-sliders .card-decks .card-deck .card img {
    width: 200%;
    height: 200%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-sliders .card-decks .card-deck .card .card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Custom animate.css delay */
.animated.delay-02s {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animated.delay-04s {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat';
    font-weight: normal;
    color: #444;
    text-align: center;
    margin: 2rem 0;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 80rem;
}

.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.col {
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
}

.container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;

}
.front,
.back {
    min-height: 700px;

}

.front,
.back {
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 280px;
    height: auto;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
}

.back {
    background: rgb(2, 35, 79);
    background: linear-gradient(45deg, #5087b4 0%, #073348 100%);
}

.front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #00000092;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
}

.container:hover .front,
.container:hover .back {
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 20px;
}

.inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.container .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container .front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container:hover .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container:hover .front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.front .inner p {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.front .inner p:after {
    content: '';
    width: 4rem;
    height: 2px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
}

.front .inner span {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat';
    font-weight: 300;
}

@media screen and (max-width: 64rem) {
    .col {
        width: calc(33.333333% - 2rem);
    }
}

@media screen and (max-width: 48rem) {
    .col {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 32rem) {
    .col {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

/* ===== ABOUT SECTION ===== */
#container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 900px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    color: #3586ff;
    font-size: 1rem;
}

.product-details h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    
}

.hint-star {
    color: #ffc107;
    font-size: 1.2rem;
}

.product-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.product-image {
    flex: 1;
}

.product-image img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 470px;
    width: 100%;
}

/*popular destinations*/
.hero-section {
    align-items: center;
    background: var(--background-dark);
    display: flex;
    min-height: 100%;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-l);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: var(--spacing-l);
    grid-row-gap: var(--spacing-l);
    max-width: var(--width-container);
    width: 100%;
    height: 700px;

}

@media(min-width: 540px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 960px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    list-style: none;
    position: relative;
    margin: 20px;
    
}

.card:before {
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
}

.card__background {
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    transform: scale(1) translateZ(0);
    transition:
        filter 200ms linear,
        transform 200ms linear;
    border-radius: 20px;
}

.card:hover .card__background {
    transform: scale(1.05) translateZ(0);
}

.card-grid:hover .card:not(:hover) .card__background {
    filter: brightness(0.5) saturate(0.5) contrast(1.2) blur(20px);
}

.card__content {
    left: 20px;
    padding: var(--spacing-l);
    position: absolute;
    top: 20px;
}

.card__category {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-m);
    text-transform: uppercase;
}

.card__heading {
    color: var(--text-lighter);
    font-size: 2rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    word-spacing: 100vw;
}

/* ===== WHY SECTION ===== */
main {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    background: linear-gradient(135deg, rgba(2, 35, 79, 0.1), rgba(53, 134, 255, 0.1));
    padding: 40px;
    border-radius: 15px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cardw {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.why {
    flex: 1;
}

.why h4 {
    color: #3586ff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.why h2 {
    font-size: 2.5rem;
    color: #333;
}

.inner2 {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.title8 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title8 i {
    color: #3586ff;
}
 main .inner2 .title8 i {
     font-size: 2rem;
 }

.subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.inner2 hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #eee;
}


/* ===== FOOTER ===== */
footer {
    background: rgba(2, 35, 79, 0.9);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.zoom {
    margin-bottom: 20px;
}

.social_icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social_icon li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.social_icon li a:hover {
    background: #3586ff;
    transform: translateY(-5px);
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

footer p {
    color: #aaa;
    margin-top: 20px;
}

/* ===== BACK TO TOP ===== */

.back-to-top {
    
 position: fixed;
 bottom: 20px;
 right: 20px;
 background: #3586ff;
 color: #fff;
 width: 50px;
 height: 50px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 transition: all 0.4s;
 z-index: 1000;
 text-decoration: none;
        
}
#container,
main,
.wrapper,
.hero-section,
.why {
    width: 95%;
    max-width: 6000px;
    margin: 20px auto;
}

/* ===== RESPONSIVENESS ===== */

/* Tablets */
@media (max-width: 992px) {

    /* Navbar */
    .menu {
        gap: 1rem;
    }

    .logo a {
        font-size: 1.5rem;
    }

    /* Carousel */
    .carousel {
        height: 100vh;
    }

    .carousel .list .item .content {
        max-width: 90%;
        padding-right: 0;
        top: 25%;
    }

    .carousel .list .item .title,
    .carousel .list .item .topic {
        font-size: 3rem;
    }

    .carousel .des {
        font-size: 16px;
        padding-right: 0;
    }

    .thumbnail {
        bottom: 20px;
        gap: 10px;
    }

    .thumbnail .item {
        width: 100px;
        height: 150px;
    }

    /* About */
    #container {
        flex-direction: column;
        height: auto;
        padding: 30px;
    }

    .product-image img {
        height: auto;
    }

    /* Why Section */
    .cardw {
        flex-direction: column;
    }

    /* Flip Cards */
    .col {
        width: calc(50% - 2rem);
    }

    /* Destinations */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
}


/* Mobile */
@media (max-width: 768px) {

    /* Navbar */
    .toggle_btn {
        display: block;
    }

    header .menu {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgb(20, 39, 73);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
    }

    header .menu.active {
        display: flex;
    }

    .log1 {
        display: none;
    }

    /* Carousel */
    .carousel {
        height: 100vh;
    }

    .carousel .list .item .content {
        top: 30%;
        text-align: center;
    }

    .carousel .list .item .title,
    .carousel .list .item .topic {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .carousel .des {
        font-size: 14px;
        line-height: 1.6;
    }

    .thumbnail {
        display: none;
    }

    .arrows {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: 85%;
        justify-content: center;
    }

    /* Titles */
    .title h4 {
        font-size: 2rem;
    }

    /* Flip Cards */
    .col {
        width: 100%;
    }

    .front,
    .back {
        min-height: 400px;
    }

    /* About Section */
    #container {
        width: 95%;
        padding: 20px;
    }

    .product-details h1 {
        font-size: 2rem;
    }

    .product-details p {
        font-size: 14px;
    }

    /* Why Section */
    main {
        width: 95%;
        padding: 20px;
    }

    .why h2 {
        font-size: 2rem;
    }

    /* Destinations */
    .card-grid {
        grid-template-columns: 1fr;
    }

    .card__heading {
        font-size: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 30px 15px;
    }

    footer .menu {
        flex-direction: column;
        gap: 10px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .carousel .list .item .title,
    .carousel .list .item .topic {
        font-size: 1.8rem;
    }

    .carousel .des {
        font-size: 13px;
    }

    .arrows button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .product-details h1,
    .why h2 {
        font-size: 1.5rem;
    }

    .title h4 {
        font-size: 1.5rem;
    }

    .inner2 {
        padding: 20px;
    }
}
/* ===============================
   LARGE SCREEN 
=============================== */
@media (min-width: 2000px) {

    /* MAIN SECTIONS */
#container,
main,
.wrapper,
.hero-section {
    width: 95%;
    max-width: 4000px;
    margin: 60px auto;
}

header {
    width: 100%;
    max-width: 4000px;
    height: 100px;
}

header .logo a {
    font-size: 3rem;
}

header .menu a {
    font-size: 2rem;
    margin: 0 10px;
}

header button.log1 {
    height: 70px;
    width: 150px;
    padding: 15px 20px;
}

header button.log1 a {
    font-size: 2rem;
}

/* TITLES */

.title h4 {
    font-size: 6rem;
    padding: 20px 40px;
}

/* CAROUSEL */
.carsousel .list .item .content .topic {
    font-size: 6rem;
}

.carousel .list .item .content .des {
    font-size: 2rem;
}



/* FLIP CARDS */
.wrapper .back .inner {
    font-size: 2rem;
}

.wrapper .front .inner span {
    font-size: 4rem;
}

.wrapper .front .inner p {
    font-size: 3rem;
}

.front,
.back {
    min-height: 500px;
}
/* ABOUT SECTION */

#container {
    height: auto;
    padding: 50px;
    gap: 50px;
}

.product-details h1 {
    font-size: 4rem;
}

.product-details h3 {
    font-size: 4rem;
}

.product-details p {
    font-size: 2rem;
    line-height: 2;
}

.product-details .hint-star {
    font-size: 2rem;
}

.product-image img {
    height: 1500px;
    object-fit: cover;
    border-radius: 20px;
}

/* DESTINATIONS */
.popular .card-grid {
    height: 1000px;
}

.card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    margin: 0;
}

.card::before {
    padding-bottom: 120%;
}

.card__heading {
    font-size: 2.3rem;
}

.popular h3 {
    font-size: 3rem;
}




/* CAROUSEL */

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 6rem;
}

.carousel .des {
    font-size: 1.4rem;
}

/* WHY SECTION */
.why {
    height: 700px;
}

main .why h4 {
    font-size: 2rem;
}

main .why h2 {
    font-size: 4rem;
}

main .inner2 .title8 {
    font-size: 3rem;
}

main .inner2 .subtitle {
    font-size: 2rem;
}

main .inner2 .title8 i {
    font-size: 3rem;
}

main .cardw .why {
    padding-top: 200px;
    padding-left: 50px;
}

/* FOOTER */
footer a {
    font-size: 2rem;
    margin: 0 20px;
}

footer .social_icon li a {
    width: 70px;
    height: 70px;
    font-size: 3rem;
}

footer p {
    font-size: 1rem;
}

.back-to-top {
    width: 70px;
    height: 70px;
    font-size: 3rem;
}

}

@media (min-width: 4000px) {

    /* MAIN SECTIONS */

    #container,
    main,
    .wrapper,
    .hero-section {
        width: 95%;
        max-width: 6000px;
        margin: 60px auto;
    }
     header {
         width: 100%;
        max-width: 6000px;
        height: 150px;
    }
    header .logo a {
        font-size: 6rem;
    }
    header .menu a {
        font-size: 4rem;
        margin: 0 50px;
    }
    header button.log1 {
        height: 100px;
        width: 270px;
        padding: 20px;
    }
    header button.log1 a {
        font-size: 4rem;
    }

    /* TITLES */

    .title h4 {
        font-size: 10rem;
        padding: 20px 40px;
    }
    /* CAROUSEL */
    .carsousel .list .item .content .topic {
        font-size: 10rem;
    }
     .carousel .list .item .content .des {
        font-size: 4rem;
    }
    .carousel .thumbnail .item .content .title {
        font-size: 6rem;
    }
    /* FLIP CARDS */
    .wrapper .back .inner
    {
        font-size: 5rem;
    }
    .wrapper .front .inner span
    {
        font-size: 8rem;
    }
    .wrapper .front .inner p
    {
        font-size: 8rem;
    }
    /* ABOUT SECTION */

    #container {
        height: auto;
        padding: 50px;
        gap: 50px;
    }

    .product-details h1 {
        font-size: 6rem;
    }
    .product-details h3 {
        font-size: 6rem;
    }
    .product-details p {
        font-size: 4rem;
        line-height: 2;
    }
    .product-details .hint-star {
        font-size: 4rem;
    }
    .product-image img {
        height: 2000px;
        object-fit: cover;
        border-radius: 20px;
    }

    /* DESTINATIONS */
    .popular .card-grid
    {
        height: 2500px;
    }
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .card {
        margin: 0;
    }

    .card::before {
        padding-bottom: 120%;
    }

    .card__heading {
        font-size: 2.3rem;
    }
    .popular  h3 {
        font-size: 10rem;
    }

    /* FLIP CARDS */

    .front,
    .back {
        min-height: 1200px;
    }

    .front .inner p {
        font-size: 2.5rem;
    }

    /* CAROUSEL */

    .carousel .list .item .title,
    .carousel .list .item .topic {
        font-size: 6rem;
    }

    .carousel .des {
        font-size: 1.4rem;
    }
    /* WHY SECTION */
    .why
    {
        height: 2000px;
        margin: 0px; 
    }
    main .why h4 {
        font-size: 4rem;
    }
    main .why h2 {
        font-size: 8rem;
    }
    main .inner2 .title8 {
        font-size: 7rem;
    } 
    main .inner2 .subtitle {
        font-size: 5rem;
    } main .inner2 .title8 i {
        font-size: 8rem;
    }
  main .cardw .why
  {
      padding-top: 800px;
      padding-left: 50px;
  }
  /* FOOTER */
  footer a
  {
      font-size: 4rem;
      margin: 0 30px;
  }
  footer .social_icon li a
    {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }
    footer p
    {
        font-size: 3rem;
    }
   .back-to-top
   {
       width: 150px;
       height: 150px;
       font-size: 6rem;
   }
 
}