* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4faf6;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(18, 71, 41, 0.85);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (max-width: 1020px) {
    nav {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 15px 30px;
    }
}

@media (max-width: 724px) {
    nav {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 15px 20px;
        flex-wrap: wrap;
    }

}

.nav_title_name {
    display: flex;
    flex-direction: column;
    gap: 1px;
}


.nav_title_name {
    font-size: 30px;
    color: #ffffff;
}

.nav_title_description {
    font-weight: 700;
    font-size: 11px;
    color: #a6ebd3;
    letter-spacing: 0.05em;
}

.nav_links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav_links a {
    font-weight: bold;
    padding: 8px 15px;
    background-color: #055f4033;
    color: #eaf5f3;
    text-decoration: none;
    border: 0.1px solid rgb(255, 249, 249);
    border-radius: 20px;
    transition: 0.5s;
    font-size: 12px;
}

@media (max-width: 1020px) {
    .nav_links a {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        padding: 7px 12px;

    }
}

@media (max-width: 724px) {
    .nav_links a {
        display: flex;
        flex-direction: column;
        padding: 7px 12px;
        font-size: 9px;

    }
}

.nav_links a:hover {
    color: #ffffff;
    background-color: #034931;
    border-color: #034931;
}

.nav_links a.active {
    background-color: #034931;
    border-color: #a6ebd3;
    color: #a6ebd3;
}



.main_section {
    background-image: url(images/raimond-klavins-KKm1ua7MSf0-unsplash.jpg);
    background-size: cover;
    background-position: center;
    height: 620px;
}

.hero_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.hero_section_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero_section_title {
    font-size: 52px;
    color: #7dc4ab;
    text-align: center;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero_section_description {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.explore_button {
    padding: 12px 30px;
    background-color: #055f3f;
    color: #c8ece2;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    font-family: 'Courier New', Courier, monospace;
}

.explore_button:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background-color: #033c28;
}


.featured_destinations_container {
    padding: 70px 80px;
    background-color: #f4faf6;
}

@media (max-width: 1020px) {
    .featured_destinations_container {
        padding: 70px 30px;


    }
}

@media (max-width: 724px) {
    .featured_destinations_container {
        padding: 70px 30px;


    }
}

.featured_destination_main_text {
    margin-bottom: 50px;
}

.featured_destination_main_text h1 {
    font-weight: 900;
    color: #1a4d30;
    font-size: 40px;
}

.featured_destination_main_text p {
    font-size: 17px;
    color: #3f7554;
    margin-top: 5px;
}

.featured_destinations {
    display: grid;
    grid-template-rows: repeat(2, 200px);
    grid-template-columns: repeat(3, 250px);
    gap: 18px;
    max-width: 1100px;
    margin: auto;
    justify-content: center;
}

@media (max-width: 1020px) {
    .featured_destinations {
        display: grid;
        grid-template-rows: repeat(3, 200px);
        grid-template-columns: repeat(2, 250px);
        gap: 18px;
        max-width: 1100px;
        margin: auto;
        justify-content: center;
    }
}

@media (max-width: 724px) {
    .featured_destinations {
        display: grid;
        grid-template-rows: repeat(5, 200px);
        grid-template-columns: repeat(1, 250px);
        gap: 18px;
        max-width: 1100px;
        margin: auto;
        justify-content: center;
    }

   
}

.featured_destinations_1 {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}


.featured_destinations_2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}


.featured_destinations_3 {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

.featured_destinations_4 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.featured_destinations_5 {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}

.featured_destinations_1,
.featured_destinations_2,
.featured_destinations_3,
.featured_destinations_4,
.featured_destinations_5 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}

.featured_destinations_1 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%),
        url(images/chitwannationalpark.jpg);
}

.featured_destinations_2 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%),
        url(images/mustang.webp);
}

.featured_destinations_3 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%),
        url(images/pokhara.jpg);
}

.featured_destinations_4 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%),
        url(images/Lumbini.jpg);
}

.featured_destinations_5 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%),
        url(images/everest.jpg);
}

.featured_destinations_1:hover,
.featured_destinations_2:hover,
.featured_destinations_3:hover,
.featured_destinations_4:hover,
.featured_destinations_5:hover {
    transform: translateY(-4px);
    transition: 0.3s;
}

.featured_destinations_text {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15px;
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
}

.featured_destinations_text p {
    color: #c8ece2;
    font-size: 11px;
    margin-top: 2px;
}




.why_nepal_section {
    background-color: #1a4d30;
    padding: 70px 80px;
    height: 100%;
    text-align: center;
}

.why_nepal_section h1 {
    color: #a6ebd3;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 6px;
}

.why_nepal_section>p {
    color: #b8e8cc;
    font-size: 21px;
    margin-bottom: 80px;


}

.why_cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.why_card {
    background-color: rgba(24, 114, 66, 0.407);
    border: 1px solid rgba(226, 221, 221, 0.296);
    border-radius: 10px;
    padding: 35px 30px;
    width: 220px;
    text-align: center;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 20px;
}

.why_card:hover {
    background-color: rgba(24, 114, 66, 0.407);
    transform: translateY(-4px);
    border-color: rgba(10, 128, 53, 0.127);
}



.why_card h3 {
    padding-bottom: 20px;
    color: #7be9c2;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 1px;
}

.why_card p {
    color: #ccd8d1;
    font-size: 12px;
    line-height: 1.5;
}


.nepal_facts_section {
    background-color: #f4faf6;
    padding: 70px 80px;
    text-align: center;
    height: 100%;
}

.nepal_facts_section h1 {
    font-size: 40px;
    font-weight: 900;
    color: #1a4d30;
    margin-bottom: 6px;
}

.nepal_facts_section>p {
    color: #3f7554;
    font-size: 16px;
    margin-bottom: 50px;
}

.facts_grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fact_card {
    background-color: #ffffff;
    border: 1px solid #c8ece2;
    border-radius: 10px;
    padding: 30px 35px;
    width: 200px;
    transition: 0.3s;
}

.fact_card:hover {
    transform: translateY(-4px);
    border-color: #0f7b55;
}

.fact_number {
    font-size: 30px;
    font-weight: 900;
    color: #034931;
    margin-bottom: 6px;
}

.fact_label {
    font-size: 14px;
    color: #3f7554;
    line-height: 1.5;
}




.explore_main_container {
    background-color: #1a4d30;
    padding: 70px 80px;

}

.explore_main_text {
    margin-bottom: 50px;
}

.explore_main_text h1 {
    color: #a6ebd3;
    font-size: 50px;
    font-weight: 900;
}

.explore_main_text p {
    color: #b8e8cc;
    font-size: 17px;
    margin-top: 1px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    grid-template-rows: repeat(1, 320px);
    gap: 15px;
    max-width: 1100px;
    margin: auto;
    height: 280px;
    margin-bottom: 50px;

}

@media (max-width: 1020px) {
    .categories {
        display: grid;
        grid-template-columns: repeat(2, 250px);
        grid-template-rows: repeat(2, 320px);
        gap: 15px;
        max-width: 1024px;
        margin: auto;
        height: 100%;


    }

}

@media (max-width: 724px) {
    .categories {
        display: grid;
        grid-template-columns: repeat(1, 250px);
        grid-template-rows: repeat(5, 320px);
        gap: 15px;
        max-width: 724px;
        margin: auto;
        height: 100%;


    }

}

.category_1,
.category_2,
.category_3,
.category_4 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.category_1 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%),
        url(images/destination.jpeg);

}

.category_2 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%),
        url(images/download.jpeg);
}

.category_3 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%),
        url(images/Discover\ the\ Enchantment\ of\ Nepal_\ 15\ Must-Visit\ Tourist\ Attractions.jpeg);
}

.category_4 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%),
        url(images/bengal-tiger-1024x683.jpg);
}

.category_1:hover,
.category_2:hover,
.category_3:hover,
.category_4:hover {
    transform: translateY(-4px);
}

.category_text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1;
}

.category_text h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.category_text p {
    color: #b8e8cc;
    font-size: 11px;
    margin-top: 3px;
}

.journey_section {
    background-color: #1a4d30;
    padding: 50px 80px 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.journey_section h2 {
    color: #d4f0e0;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.journey_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 750px;
}

.journey_btn {
    padding: 9px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #d4f0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Courier New', Courier, monospace;
}

.journey_btn:hover {
    background-color: #034931;
    border-color: #034931;
    color: #ffffff;
}





footer {
    background-color: #0c3320;
    padding: 40px 80px 25px;
    color: #b8e8cc;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer_title h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
}

.footer_title p {
    font-size: 13px;
    color: #a6ebd3;
    line-height: 1.7;
    max-width: 250px;
}

.footer_col h4 {
    color: #a6ebd3;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.footer_col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer_col ul li a {
    color: #b8e8cc;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer_col ul li a:hover {
    color: #ffffff;
}

.footer_col p {
    font-size: 13px;
    color: #b8e8cc;
    line-height: 1.9;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer_bottom p {
    font-size: 12px;
    color: #a6ebd3;
}

.footer_socials {
    display: flex;
    gap: 10px;
}

.social_btn {
    padding: 7px 15px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #d4f0e0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
}

.social_btn:hover {
    background-color: #034931;
    color: #ffffff;
}