* {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    box-sizing: border-box;
}

/* navbar */
.navbar {
    display: flex;
    flex-direction: row;
    height: 75px;
    box-shadow: 1px 1px 0px 0px black;
    background-color: rgb(245, 245, 245);
    width: 100%;
}

#m1img {
    width: 150px;
    height: 95px;
    margin-left: 10px;
}

.nav-link:hover {
    text-decoration: underline;
}

/* home image container */
#cont1 {
    margin-top: 75px;
}

.home-img {
    width: 100%;
    height: fit-content;
    max-height: 510px;
    object-fit: cover;
}

/* explore container */
#cont2 {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: antiquewhite;
    gap: 8px;
}

#cont2 h2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 1.4;
    padding: 0 15px;
}

#cont2 h2 b {
    color: orangered;
}
#cont2 h6{
    color: rgba(128, 128, 128, 0.9);
}

.explore {
    color: white;
    background-color: orangered;
    text-align: center;
    min-width: 240px;
    height: 40px;
    border-radius: 5px;
    padding: 8px;
    text-decoration: none;
    margin-top: 12px;
    font-size: 15px;
}

/* slider heading */
.swiper-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px auto;
    padding: 0 10px;
}

.swiper-heading p b {
    font-size: 28px;
    color: orangered;
    font-family: "poppins", sans-serif;
    font-weight: 700;
}

/* slider container */
.swiper {
    width: 100%;
    max-width: 1200px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* For hover name effect */
.swiper-slide {
    position: relative;
    overflow: hidden;
    /* keeps title inside image */
}

.slide-title {
    position: absolute;
    bottom: -50px;
    /* start hidden below image */
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    padding: 10px 0;
    transition: bottom 0.4s ease;
}

.swiper-slide:hover .slide-title {
    bottom: 0;
    /* slides up on hover */
}

/* about container */
#about-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 40px 20px;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.about-h1 {
    color: orangered;
    font-size: 20px;
    margin-bottom: 5px;
    font-family: "poppins", sans-serif;
}

.about-h2 {
    margin: 5px 0;
    font-size: 30px;
    font-weight: 600;
    font-family: "poppins", sans-serif;
}

.about-para {
    text-align: justify;
    color: rgba(128, 128, 128, 0.9);
    line-height: 1.6;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-float:hover {
    background: #20b954;
    transform: scale(1.1);
}

/* Tooltip text */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    /* space between button and tooltip */
    background: #25d366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-5px);
}

/* why choose us */
/* Section container */
.why-choose {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title */
.why-choose h2 {
  font-size: 30px;
  color: #ff6600;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* Individual card */
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

/* Icon box */
.icon-box {
  width: 55px;
  height: 55px;
  background-color: #ff6600;
  color: white;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Card title */
.why-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

/* Card text */
.why-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Hover effects */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ff6600;
}

.why-card:hover .icon-box {
  background-color: #222;
  transform: rotate(10deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 24px;
  }

  .why-card {
    padding: 20px 15px;
  }

  .why-card h3 {
    font-size: 16px;
  }
}

/* map container */
#map-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    text-align: center;
}

#map-cont h3 {
    color: orangered;
    margin: 10px 0;
    font-size: 28px;
    font-weight: 600;
    font-family: "poppins", sans-serif;
}

/* our services */
/* Container for all services */
.services-container {
  text-align: center;
  padding: 40px 20px;
}

/* Heading style */
.services-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

/* Grid layout for cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  margin: 50px;
}

/* Each service card */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card image */
.service-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

/* Card title */
.service-card h3 {
  padding: 12px 10px 16px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-container h2 {
    font-size: 24px;
  }

  .service-card img {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .service-card h3 {
    font-size: 14px;
  }
}

.services-btn{
    text-decoration: none;
    width: 150px;
    height: 75px;
    padding: 15px;
    border: 1px solid #ff5722;
    color: #ff5722;
    border-radius: 5px;
    margin: 20px;
}

/* contact us  */
#contactus-cont {
    display: flex;
    padding: 30px;
    gap: 20px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

#contactus-cont img {
    width: 500px;
    height: 500px;
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    /* Adjust as needed */
    width: 500px;
}

h1 {
    color: #ff5722;
    /* Orange color from the image */
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between rows */
}

.form-row {
    display: flex;
    gap: 20px;
    /* Space between fields in a row */
}

/* textarea  */
.form-row1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between fields in a row */
}


.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

label[for="email"]::after,
label[for="phone-no"]::after,
label[for="country"]::after,
label[for="enquiry-type"]::after,
label[for="destination"]::after,
label[for="dates"]::after,
label[for="people"]::after {
    content: " *";
    color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensures padding doesn't increase overall width */
    font-size: 16px;
    color: #333;
}

input::placeholder {
    color: #aaa;
}

.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensures padding doesn't increase overall width */
    font-size: 16px;
    color: #333;
}

.submit-button {
    background-color: #ff5722;
    /* Orange color from the image */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    align-self: flex-start;
    /* Aligns the button to the left */
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #e64a19;
    /* A slightly darker orange for hover effect */
}

/* Footer Base */
#footer {
    background: #f9f9f9;
    color: #333;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    text-align: left;
}

/* footer basics */
.footer-basic h5{
    color: orangered;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.basics{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-services{
    display: flex;
    flex-direction: column;
}

.footer-services a{
    text-decoration: none;
    color: black;
    text-align: center;
}

.footer-services a:hover{
    text-decoration: underline;
    color: orangered;
}

/* Social Section */
.footer-social h5,
.footer-contact h5 {
    color: orangered;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #bbb;
    border-radius: 6px;
    color: #444;
    background: #f0f0f0;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons li a:hover {
    background: orangered;
    color: white;
    border-color: orangered;
}

/* Contact Section */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-contact i {
    color: orangered;
    margin-right: 10px;
    font-size: 16px;
    border: 1px solid hsl(0, 0%, 35%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    text-align: center;
    line-height: 36px;
}

.footer-contact a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: orangered;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* ---------------- RESPONSIVE DESIGN ---------------- */

@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 10px;
    }

    .swiper {
        height: 300px;
    }

    #about-cont {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #contactus-cont {
        flex-direction: column;
        align-items: center;
    }

    #contactus-cont img {
        width: 100%;
        height: auto;
    }

    .contact-form-container {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
    }

    #m1img {
        width: 125px;
        height: auto;
    }

    #cont2 h2 {
        font-size: 20px;
    }

    .explore {
        min-width: 200px;
        font-size: 14px;
    }

    .swiper {
        height: 250px;
    }

    .slide-title {
        font-size: 16px;
        padding: 5px 10px;
    }

    .navbar-brand img {
        width: 100px;
    }
}

@media (max-width: 350px) {
    .navbar {
        height: auto;
        padding: 5px;
    }

    #m1img {
        width: 125px;
        height: auto;
    }

    #cont2 h2 {
        font-size: 18px;
    }

    .about-h2 {
        font-size: 22px;
    }

    #map-cont iframe {
        height: 300px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}