@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700;800&display=swap");

*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
/* ul, */
li {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 12%;
}

/* Remove the default outline for all inputs */

input {
  outline: none;
  border-radius: 5px;
}

input:focus {
  box-shadow: 0 0 2px 2px var(--color-primary); /* Adjust the color and size as needed */
}

select:focus {
  box-shadow: 0 0 2px 2px var(--color-primary); /* Adjust the color and size as needed */
}


input[type="checkbox"]:focus {
  box-shadow: 0 0 2px 2px var(--color-primary);
  accent-color: var(--color-primary);
}

input[type="date"]:focus {
  box-shadow: 0 0 2px 2px var(--color-primary);
  accent-color: var(--color-primary);
}

textarea {
  outline: none;
  border: none;
}

textarea:focus {
  box-shadow: 0 0 2px 2px var(--color-primary); /* Adjust the color and size as needed */
}

:root {
  --color-white: #fffefc;
  --color-black: #1b150b;
  --color-primary: #163020;  /* This is the main color of the website */
  --copyright-color:#13281b;
  --color-accent: #ffb88d;
  --header-font: "Montserrat", sans-serif;
  --body-font: "Open Sans", sans-serif;
  --whatsapp-color: rgb(0, 163, 0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent; 
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 8px; 
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.color-primary {
  color: var(--color-primary);
}

.color-white {
  color: var(--color-white);
}

.bg-whatsapp{
  background-color: var(--whatsapp-color);
}

.bg-white{
  background-color: white;
}

.main-heading {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 48px;
}

.sub-heading {
  font-family: var(--header-font);
  font-size: 32px;
  font-weight: 600;
}

.section-heading {
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 600;
}

.paragraph-font {
  font-family: var(--body-font);
  font-size: 16px;
}

.action-font {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 600;
}

.active-link {
  color: var(--color-primary);
}

.box-shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

body {
  font-family: var(--body-font);
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 2px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

.content-container {
  margin: 5% 7.5%;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  margin: 8px 0;
}

.cta {
  background-color: var(--color-primary);
  color: white;
  padding: 10px 18px;
  border: 2px solid var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
}

.cta-whatsapp{
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 18px;
  border: 2px solid var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
}

.cta-link {
  text-decoration: none;
  color: var(--color-primary);
}

.cta-link:hover {
  text-decoration: underline;
}

/* .underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; 
} */

/* .underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px; 
  background: url("../images/underline_dark_green.svg") center bottom no-repeat; 
  background-size: contain;
} */

/* Navbar */

.navbar {
  background-color: var(--color-white);
  opacity: 0.95;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  opacity: 100;
}

.navbar-nav {
  gap: 16px;
}

#nav-logo {
  height: 70px;
}

/* Hero */

#hero {
  position: relative;
  color: white; /* Set text color to ensure readability */
  height: calc(100vh - 96px);
}

#hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/landing\ page\ main\ 3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Ensure the background is behind the content */
}

#hero .cta {
  background-color: var(--color-white);
  border-radius: 5px;
  border: 2px solid var(--color-white);
  color: var(--color-black);
}

#hero .cta:hover {
  background-color: rgb(233, 233, 233);
  border: 2px solid rgb(233, 233, 233);
  transition: all 0.2s ease-in-out;
}

.hero-content{
  height: 100%;
}

.contact {
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.333);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 15px;
  width: 100%;
}

#contactForm input {
  padding: 10px;
  border: none;
}

#contactForm textarea {
  padding: 10px;
  border-radius: 5px;
  resize: none;
}

#contactForm #submit {
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: green;
  color: var(--color-white);
}

#contactForm #submit:hover {
  background-color: rgb(0, 123, 0);
}

/* Stats */

.stats-divider{
  content: "";
  height: 72px;
  width: 2px;
  background-color: var(--color-primary);
}

/* About */

#about {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: #fafafa;
}

.about-content > .cta:hover {
  background-color: white;
  color: var(--color-primary);
  transition: all 0.2s ease-in-out;
}

/* Tours */

@keyframes feadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.tour-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 8px;
  border-radius: 16px;
}

.tour-card hr {
  margin: 4px 0;
}

.tour-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
}

.tour-details .cta {
  margin-top: 12px;
  font-size: 16px;
}

.tour-card-img .tour-img {
  height: 175px;
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  object-fit: cover;
}

.tour-card-img {
  position: relative;
  overflow: hidden;
}

.tour-card-img .band {
  padding: 5px 10px;
  position: absolute;
  background-color: red;
  color: white;
  top: 24px;
  right: 0px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

/* Photography  */

#photography{
  background-color: #fafafa;
}

.detail {
  display: flex;
  gap: 24px;
  align-items: start;
}

#detail-img {
  height: 64px;
}

.desc {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

#photography-img {
  height: 500px;
  object-fit: contain;
}
/* Blogs */

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.blog-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-radius: 15px;
}

#blog-img {
  height: 240px;
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}

.blog-card .cta-link {
  margin-top: 10px;
}

/* Testimonial */

#testimonials > .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#testimonials {
  background-color: var(--color-primary);
  padding: 5px 0;
}

.wrapper-testimonial {
  width: 100%;
  position: relative;
}

.wrapper-testimonial::before,
.wrapper-testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px; /* Adjust the width of the blurred area as needed */
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.046)
  ); /* Adjust the gradient as needed */
  filter: blur(10px); /* Adjust the blur radius as needed */
  z-index: 9;
}

.wrapper-testimonial::before {
  left: 0;
}

.wrapper-testimonial::after {
  right: 0;
}

.carousel1 {
  padding: 32px 0;
}

.wrapper-testimonial i {
  height: 50px;
  width: 50px;
  background-color: var(--color-white);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 10;
}

.wrapper-testimonial i:first-child {
  left: -22px;
}

.wrapper-testimonial i:last-child {
  right: -22px;
}

.wrapper-testimonial .carousel1 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel1::-webkit-scrollbar {
  display: none;
}

.carousel1 :where(.card, .img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel1.no-transition {
  scroll-behavior: auto;
}

.carousel1.dragging {
  scroll-behavior: auto;
}

.carousel1.dragging .testimonial-card {
  cursor: grab;
  user-select: none;
}

.carousel1 .testimonial-card {
  scroll-snap-align: start;
  list-style-type: none;
  background-color: var(--color-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 15px;
  cursor: pointer;
  padding: 32px;
  text-align: center;
}

.testimonial-card .img {
  background-color: var(--color-primary);
  width: 108px;
  height: 108px;
  border-radius: 50%;
}

.testimonial-card .img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-white);
}

.testimonial-card h2 {
  margin: 32px 0 8px;
}

#call-to-action {
  background-color: var(--color-primary);
  padding: 1px;
  color: var(--color-white);
}

#call-to-action .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

#call-to-action .cta {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 5px;
}

/* Subscribe */

#subscribe{
  background-color: #fafafa;
}

#subscribe input:focus {
  box-shadow: none; /* Adjust the color and size as needed */
}

.subscribe-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-radius: 50px;
  gap: 8px;
  max-width: 640px;
  margin: auto;
}

.subscribe-input i {
  font-size: 35px;
}

.email-input {
  display: flex;
  padding: 2px 24px;
  gap: 24px;
  border: 1px solid lightgray;
  border-radius: 8px;
  width: 100%;
}

.email-input input {
  border: none;
  width: 100%;
  background-color: transparent;
}


.email-input input:focus {
  outline: none;
  border: none;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
}

#footer {
  padding-top: 1px;
  background-color: var(--color-primary);
  color: white;
}

.footer-nav {
  display: flex;
  align-items: start;
  gap: 48px;
}

#footer-logo {
  height: 100px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
  font-size: 25px;
}

.links a,
.social-links a {
  color: var(--color-white);
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.copyright {
  background-color: var(--copyright-color);
  color: var(--color-white);
  padding: 24px;
  text-align: center;
  font-size: 14px;
}

#myModal {
  display: none;
  padding-top: 20px;
}

.wrapper nav {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  margin: auto;
}

.wrapper nav label {
  display: inline-block;
  height: 100%;
  text-align: center;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: var(--color-black);
  margin: 0 5px;
  font-weight: 500;
}

.wrapper nav label:hover {
  color: var(--color-primary);
}

.wrapper nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

/* Optional: Add styles for other browsers */
.wrapper nav {
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

#photo-tour:checked ~ nav label.photo-tour,
#group-tour:checked ~ nav label.group-tour,
#customized:checked ~ nav label.customized,
#leisure-fit:checked ~ nav label.leisure-fit,
#leisure-wildlife:checked ~ nav label.leisure-wildlife {
  color: var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

input[type="radio"] {
  display: none;
}

#tour .content {
  display: none;
  color: #000;
}

#photo-tour:checked ~ #tour .content-1,
#group-tour:checked ~ #tour .content-2,
#customized:checked ~ #tour .content-3,
#leisure-fit:checked ~ #tour .content-4,
#leisure-wildlife:checked ~ #tour .content-5 {
  display: block;
  animation: feadIn 0.6s ease-in-out;
}

.dropdown-center .btn {
  padding: 10px 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: auto;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.dropdown-center .btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.dropdown-item {
  padding: 7px 15px;
}

.dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.tour-card-new {
  position: relative;
  height: 250px;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  border-radius: 10px;
}

.tour-card-new .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.8)
  );
}

.tour-card-new .section-heading{
  color: white;
  z-index: 1;
  position: absolute;
}

.tour-card-new .section-heading {
  bottom: 0;
  padding: 25px;
}

.tour-card-new a {
  bottom: 20px;
  left: 20px;
}

.tour-card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  margin: 65px auto 0;
}

.modal-body #contactForm {
  width: 100%;
  max-width: 100%;
  background-color: white;
}

.enquiry #contactForm {
  width: 100%;
  max-width: 500px;
}

.enquiry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
}

.enquiry .dropdown-center {
  display: block;
}

.enquiry .dropdown-center .btn {
  width: 100%;
  max-width: 500px;
  padding: 8px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: auto;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid gray;
}

.enquiry .dropdown-menu.show {
  width: 100%;
  max-width: 500px;
}

.enquiry .dropdown-item {
  padding: 7px 15px;
}

.enquiry .dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.modal-body #contactForm textarea {
  border: none;
}

.modal-body #contactForm input,
textarea,
.enquiry #contactForm input,
textarea {
  outline: 1px solid gray;
}

.modal-header button {
  border: none;
  background-color: transparent;
  font-size: 20px;
}
