/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #343a40;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #343a40;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .nav-list {
      flex-wrap: wrap;
    }
    .header .container {
        justify-content: space-between;
        gap: 20px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    margin-top: 60px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .hero-overlay h1 {
        font-size: 24px;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-card {
    background-color: #ffffff;
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid #ddd;
}

.about-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.about-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Popular Destinations Section */
.destinations {
    padding: 50px 0;
}

.destinations h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.destinations-grid {
    display: flex;
    gap: 20px;
}

.destination-card {
    position: relative;
    width: 600px;
}

.destination-card img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.destination-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.destination-overlay p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .destinations-grid {
        flex-direction: column;
    }
    .destination-card {
        width: 100%;
    }
}

/* Awesome Packages Section */
.packages {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.packages h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-card {
    background-color: #414040;
    padding: 0 0 20px;
    text-align: center;
    /* border: 1px solid #ddd; */
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.package-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.package-card p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.package-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Section */
.booking {
    padding: 50px 0;
    background-color: #343a40;
    color: #ffffff;
}

.booking h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.booking-form {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-form input,
.booking-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form textarea {
    height: 100px;
}

.booking-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .booking-form {
        width: 100%;
    }
}

/* 3 Easy Steps Section */
.steps {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.steps h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background-color: #343a40;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.step-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #ffff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Guides Section */
.guides {
    padding: 50px 0;
}

.guides h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.guide-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.guide-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.guide-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.guide-role {
    display: inline-block;
    padding: 5px 10px;
    background-color: #28a745;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-card {
    background-color: #343a40;
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid #f8f8f8;
}

.testimonial-card p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-card h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.gallery-images {
    display: flex;
    gap: 10px;
}

.gallery-images img {
    width: 50px;
    height: 50px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
}


html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}