@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: "Arial", Poppins, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px !important;
  color: black !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
}

html,
body {
  scroll-behavior: smooth;
}
.leading-relaxed{text-align:justify !important;}
.text-gray-700{text-align:justify !important;}

/* Header styles */
#mobile-menu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateX(-100%);
  opacity: 0;
}

#mobile-menu.menu-open {
  transform: translateX(0);
  opacity: 1;
}

/* Overlay for mobile menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.custom-nav-btn {
  background-color: #135b05eb;
  color: white !important;
  padding: 3px 8px;
  border-radius: 2px;
  transform: skew(-7deg);
}

.custom-nav-btn:hover {
  color: white;
}

/* Enquiry button Styles */
#enquiry-btn {
  width: fit-content;
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 100;
  background: #3d7d4a;
  padding: 10px 21px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

#enquiry-btn:hover {
  background: green;
  transform: translateY(-4px);
}

#Enquiry-form {
  position: fixed;
  right: 2%;
  bottom: 15%;
  z-index: 100;
  background: rgba(232, 232, 232, 0.715);
  backdrop-filter: blur(10px);
}

/* Hero Styles */
#hero-section {
  height: 80vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero-section img {
  object-fit:cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(209, 213, 219, 0.85);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem;
  max-width: 80%;
}

/* Green theme button */
.btn-green {
  background-color: #16a34a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-green:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #hero-section {
    height: 60vh;
  }

  .hero-content-wrapper {
    padding: 1.5rem;
  }

  .hero-content-wrapper h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-content-wrapper h1 {
    font-size: 2rem;
  }

  .hero-content-wrapper p {
    font-size: 1rem;
  }
}

/* About Destination Styles */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-green-700 {
  color: #15803d;
}

.text-white {
  color: #fff;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.grid {
  display: grid;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-12 {
  gap: 3rem;
}

.gap-6 {
  gap: 1.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.h-\[fit-content\] {
  height: fit-content;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

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

.bg-green-700 {
  background-color: #15803d;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-green-100 {
  border-color: #dcfce7;
}

.p-5 {
  padding: 1.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.absolute {
  position: absolute;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

/* Custom styles */
.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-container img {
  transition: transform 0.7s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.divider {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  margin: 5px auto;
  border-radius: 2px;
}

.leaf-decoration {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(25deg);
  color: #16a34a;
  font-size: 8rem;
}

.leaf-2 {
  bottom: 10%;
  right: 5%;
  transform: rotate(-15deg);
  color: #15803d;
  font-size: 6rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .text-4xl {
    font-size: 1.875rem;
  }

  .text-5xl {
    font-size: 2.25rem;
  }

  .leaf-decoration {
    display: none;
  }

  .gap-12 {
    gap: 2rem;
  }
}

/* Safari zone Styles */
.zone-card {
  border: 1px solid rgb(12, 107, 12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding: 1rem 1rem;
  border-radius: 8px;
  background: #dcfce7;
}

.zone-card:hover {
  transform: translateY(-3px);
  border: 2px solid rgb(19, 214, 19);
  box-shadow: 20px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Tour packages Styles */

.tour-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.carousel-container {
  overflow: hidden;
}
.tour-card-wrapper {
  transition: transform 0.5s ease;
}

/* Styling History Section */
.history-card {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 20px;
  background: #f9fafb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/*  */

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #16a34a, #22c55e);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 2%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2%;
}

.timeline-year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
  left: calc(50% - 40px);
}

.timeline-item:nth-child(even) .timeline-year {
  right: calc(50% - 40px);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: white;
  transform: translateY(-50%) rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }

  .timeline-year {
    left: 0 !important;
    right: auto !important;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    right: auto;
  }
}

.leaf-decoration {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  color: #16a34a;
  font-size: 8rem;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(25deg);
}

.leaf-2 {
  bottom: 10%;
  right: 5%;
  transform: rotate(-15deg);
}

/* Newsletter Styles
----------------------------------*/
.carousel-container {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.carousel-card {
  flex: 0 0 calc(25% - 1rem);
  scroll-snap-align: start;
  border: 2px solid gray;
}

@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
  #Newsletter-section {
    width: 95vw !important;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(50% - 1rem);
  }

  #prevBtn {
    left: 20px;
  }

  #nextBtn {
    right: 5vw;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 calc(100% - 1rem);
  }

  #nextBtn {
    right: 2vw;
  }
  #Newsletter-section {
    width: 99vw !important;
  }
}

/* Important Links Styles */
#importantLink-section {
  background: linear-gradient(to right, #e6f4e6, #f0f9f0);
}

.link-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
}
.link-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.link-item {
  transition: all 0.2s ease;
}
.link-item:hover {
  background-color: #f0f9f0;
  transform: translateX(5px);
}
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #16a34a;
  border-radius: 3px;
}
