* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.theme-color {
    color: #11798c;
}
.logo img {
    max-width: 150px;
    height: auto;
}
.banner {
    background: url("../img/banner.webp") rgba(0, 0, 0, 0.3);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center center;
    width: 100% !important;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.banner h1 {
    font-size: 12em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner p {
    font-size: 24px;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    width: 50%;
}
.banner a {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #11798c;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.about {
    margin: 200px 0px 80px 0px;
    height: 320px;
    vertical-align: middle;
    width: 100%;
}
.about h2 {
    font-size: 65px;
    font-weight: bold;
    text-transform: capitalize;
}
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}
.content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.offer {
    margin: 100px 0px 100px 0px;
}
.upcoming-tours h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.location {
    margin: 50px 0px 120px 0px;
}
.location img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.footer {
    background-color: #11798c;
    color: white;
    padding: 20px 0;
}
/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #ffffff00;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}
.whatsapp-icon {
    max-width: 50px;
    height: auto;
}

@media (max-width: 1024px) {
    .logo img {
    max-width: 120px;
    height: auto;
}
    .banner h1 {
        font-size: 3em;
    }
    .banner p {
        font-size: 18px;
        width: 85%;
    }
    .about {
        margin: 50px 0px 50px 0px;
        height: auto;
        width: 100%;
    }
    .about h2 {
    font-size: 30px;
    }
    .upcoming-tours h2 {
    font-size: 30px;
}
    .offer {
        margin: 50px 0px 50px 0px !important;
    }
    .content {
        padding: 20px;
    }
    .content h2 {
        font-size: 30px;
    }
    .location {
        margin: 20px 0px 20px 0px;
    }
}