@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-color: #63ab45;
  --background-color: #edf4ea;
  --accent-color: #82828a;
  --button-hover-color: #558c3f;
  --secondary-background: #dce7d8;
  --highlight-color: #f4a261;
  --text-color: #2c3e50;
  --hero-background: #006547;
}



body {
  background-image: url('images/pattern-3.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {

  /* font-family: "Open Sans", sans-serif !important; */


  font-family: "Calistoga", sans-serif;
  /* Added a fallback font */
  color: #4e5651;
}

p,
a {
  font-family: "Open Sans", sans-serif !important;

}


::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--hero-background);
}

#btn-back-to-top {
  position: fixed;
  background-color: var(--hero-background);
  bottom: 20px;
  right: 20px;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 999;
  border: 1px solid var(--hero-background);
}



 /* Navbar height */
 .navbar {
  height: 80px;
  align-items: center;
}

/* Ensure dropdown menus are hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  min-width: 200px; /* Adjust width as needed */
  border-radius: 8px;
}

/* Dropdown item hover effect */
.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #006547;
}

/* Dropdown item active state */
.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important; /* Remove background color */
  color: #006547 !important; /* Set text color */
  font-weight: bold; /* Optional: Make text bold */
}

/* Hover effect for large screens */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
      display: block;
  }
}

/* Styling for navbar brand */
.navbar-brand {
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 4px;
  z-index: 15;
}

/* Center-align navbar links vertically */
.navbar-nav .nav-link {
  line-height: 46px; /* Match navbar height */
  padding: 0 1rem;
  font-weight: 600;
}

/* Active link styling */
.nav-link.active {
  font-weight: bold;
  color: #006547 !important;
}
.hero {
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.hero .slide {
  min-width: 100%;
  position: relative;
  background-color: rgba(13, 13, 12, 0.5);
  /* Light green background */

}

.hero .slide img {
  width: 100%;
  height: 100vh;
  inset: 0;
  object-fit: cover;
  opacity: 0.8;
  /* Adjust image visibility */

}



.hero-main-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
}

.hero-main-overlay p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-main-overlay h1,
.hero-main-overlay h2 {
  font-size: 80px;
  text-transform: capitalize;
  font-weight: 400;
  margin: 0;

}


.hero-main-overlay p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-main-overlay h1 {
  font-size: 80px;
  text-transform: capitalize;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero-main-overlay p {
    font-size: 16px;
  }

  .hero-main-overlay h1 {
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .hero-main-overlay p {
    font-size: 14px;
  }

  .hero-main-overlay h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-main-overlay p {
    font-size: 12px;
  }

  .hero-main-overlay h1 {
    font-size: 54px;
  }
  .hero-main-overlay h2 {
    font-size: 54px;
  }
}

@media (max-width: 576px) {
  .hero-main-overlay p {
    font-size: 10px;
  }

  .hero-main-overlay h1 {
    font-size: 40px;
  }
}

.dash-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dash {
  width: 50px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dash.active {
  background-color: white;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 20px;
  color: white;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.hero .slide img {
  filter: brightness(0.8) !important;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(45 97 45 / 45%);
  /* Light green background */
}



.main-about {
  padding: 60px;
}


@media (max-width: 576px) {
  .main-about {
    padding: 80px 26px;
  }

}

.image-content-one__content {
  position: absolute;
  bottom: 0px;
  right: -20px;
  z-index: 11;
  background: #fff;
  padding: 12px;
  box-shadow: 15px 30px 86px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 280px;
  transition: right 0.3s ease;
}

.image-content-one__content .content-inner {
  display: flex;
  border: 2px solid var(--hero-background);
  padding: 10px 40px;
  border-radius: 10px;
  align-items: center;
}

.image-content-one__title {
  font-size: 60px;
  line-height: 1;
  color: var(--hero-background-);
  font-weight: 700;
  margin: 0;
  margin-right: 10px;
}

.image-content-one__desc {
  line-height: 22px;
  font-weight: 500;
  font-size: 18px;
}

.about-main-images {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .image-content-one__content {
    right: 10px;
    max-width: 250px;
  }

  .image-content-one__title {
    font-size: 50px;
  }

  .image-content-one__desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .image-content-one__content {
    right: 5px;
    max-width: 220px;
    padding: 10px;
  }

  .image-content-one__title {
    font-size: 40px;
  }

  .image-content-one__desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .image-content-one__content .content-inner {
    padding: 0px;
  }

  .image-content-one__content {
    right: 0px;
    max-width: 130px;
    padding: 8px;
  }

  .image-content-one__title {
    font-size: 30px;
  }

  .image-content-one__desc {
    font-size: 12px;
  }
}


.about-main-images img {
  width: 100%;
  height: auto;
  display: block;
}

.about-top-logo {
  position: absolute;
  top: 12%;
  background-color: white;
  left: 4%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about-top-logo img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
}

.about-top-logo::before {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  background: url('../images/image-content.png') no-repeat center center var(--gowilds-theme-color);
  background-size: cover;
  z-index: 1;
  border-radius: 6px;
  animation: animation_top_bottom 2.5s linear infinite;
}

@keyframes animation_top_bottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .about-main-images {
    max-width: 500px;
  }

  .about-top-logo {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-top-logo img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .about-main-images {
    max-width: 400px;
  }

  .about-top-logo {
    display: none;
  }

  .about-top-logo img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .about-main-images {
    max-width: 100%;
  }

  .about-top-logo {
    top: 5%;
  }

  .about-top-logo img {
    width: 60px;
    height: 60px;
  }
}






.main-testimonials {
  padding: 120px 80px;
}

.main-testimonials-header {
  max-width: 500px;
}

.main-testimonials-header h1 {
  font-size: 48px;
}

.testimonial-one__quote {
  font-size: 20px;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 18px;
  padding: 50px 60px;
  background: #fff;
  color: var(--body-link-color);
  border-radius: 10px;
  border-bottom: 4px solid var(--hero-background);
  position: relative;
}

.testimonial-one__stars {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--hero-background);
}

.testimonial-one__quote-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 1px;
  z-index: 1;
  background: var(--hero-background);
  border-radius: 0 10px 0 100%;
  font-size: 45px;
  color: #fff;

  display: flex;
  align-items: center;
  padding-left: 20px;
}

.testimonial-one__arrow {
  display: inline-block;
  width: 146px;
  height: 50px;
  position: absolute;
  top: 100%;
  left: 60px;
}

.testimonial-one__arrow span.first {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2px;
  background: #fff;
  z-index: 9;
}

.testimonial-one__arrow span.second {
  position: absolute;
  left: 0;
  right: -4px;
  bottom: -4px;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--hero-background);
  z-index: 1;
}

.testimonial-one__meta {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 160px;
}

.testimonial-one__avatar {
  flex: 0 0 94px;
  margin-right: 18px;
  padding: 10px;
  border: 3px solid var(--hero-background);
  border-radius: 50%;
}

.testimonial-one__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-one__job {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .main-testimonials {
    padding: 80px 40px;
  }

  .main-testimonials-header h1 {
    font-size: 36px;
  }

  .testimonial-one__quote {
    padding: 30px 40px;
  }

  .testimonial-one__quote-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
    padding-left: 15px;
  }

  .testimonial-one__arrow {
    width: 120px;
    height: 40px;
  }

  .testimonial-one__meta {
    margin-left: 120px;
  }

  .testimonial-one__avatar {
    flex: 0 0 80px;
    margin-right: 15px;
  }

  .testimonial-one__name {
    font-size: 18px;
  }

  .testimonial-one__job {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .main-testimonials {
    padding: 60px 20px;
  }

  .main-testimonials-header h1 {
    font-size: 30px;
  }

  .testimonial-one__quote {
    padding: 20px 30px;
  }

  .testimonial-one__quote-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    padding-left: 10px;
  }

  .testimonial-one__arrow {
    width: 100px;
    height: 35px;
  }

  .testimonial-one__meta {
    margin-left: 90px;
  }

  .testimonial-one__avatar {
    flex: 0 0 70px;
    margin-right: 10px;
  }

  .testimonial-one__name {
    font-size: 16px;
  }

  .testimonial-one__job {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .main-testimonials {
    padding: 80px 10px;
  }

  .main-testimonials-header h1 {
    font-size: 32px;
  }

  .testimonial-one__quote {
    padding: 15px 20px;
  }

  .testimonial-one__quote-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
    padding-left: 8px;
  }

  .testimonial-one__arrow {
    width: 80px;
    height: 30px;
  }

  .testimonial-one__meta {
    margin-left: 120px;
  }

  .testimonial-one__avatar {
    flex: 0 0 60px;
    margin-right: 8px;
  }

  .testimonial-one__name {
    font-size: 14px;
  }

  .testimonial-one__job {
    font-size: 10px;
  }
}
/* Prevent overflow when zooming */
.image-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

/* Zoom effect only on image */
.zoom-image {
  transition: transform 0.5s ease;
}

.zoom-image:hover {
  transform: scale(1.1);
}

.content a {
  text-decoration: none;
  color: white;
}

.icon-container:hover {
  background-color: white !important;
  border: 1px solid var(--hero-background);
}

.icon-container:hover i {
  color: var(--hero-background);

}

.main-places {
  padding: 120px 80px;
}

.main-about-desc h1 {
  font-size: 48px;
}

.main-activities {
  padding: 120px 0px;
}

.main-activities-header h1 {
  font-size: 48px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main-places {
    padding: 100px 60px;
  }

  .main-about-desc h1 {
    font-size: 42px;
  }

  .main-activities {
    padding: 100px 0;
  }
}

@media (max-width: 992px) {
  .main-places {
    padding: 80px 50px;
  }

  .main-about-desc h1 {
    font-size: 36px;
  }

  .main-activities {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .main-places {
    padding: 60px 40px;
  }

  .main-about-desc h1 {
    font-size: 32px;
  }

  .main-activities {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .main-places {
    padding: 40px 20px;
  }

  .main-about-desc h1 {
    font-size: 32px;
  }

  .main-activities {
    padding: 40px 0;
  }

  .main-activities-header h1 {
    font-size: 32px;
  }

  .main-about-header h1 {
    font-size: 32px;
  }
}


.trip-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-container {
  width: 70px;
  height: 70px;
  background-color: var(--hero-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.icon-container i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.trip-item h2 {
  font-weight: 300;
  font-size: 24px;
}

.trip-item p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .trip-item {
    flex-direction: column;
    text-align: center;
  }

  .icon-container {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .trip-item h2 {
    font-size: 20px;
  }

  .trip-item p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container i {
    font-size: 28px;
  }

  .trip-item h2 {
    font-size: 18px;
  }

  .trip-item p {
    font-size: 14px;
  }
}


.main-activity-group {
  position: relative;
  height: 410px;
  overflow: hidden;
  padding: 6px;
}

.main-activity-group img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.main-activity-inner {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 40px);
  margin: 14px;
  background-color: white;
  color: #000;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.5s ease;
  border-radius: 10px;
  overflow: hidden;
  max-height: 100px;
}

.main-activity-group:hover .main-activity-inner {
  max-height: 300px;
  transition: max-height 0.5s ease;
}

.main-activity-inner p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: var(--accent-color);
}

.main-activity-group:hover .main-activity-inner p {
  opacity: 1;
  /* Fade in */
  transform: translateY(0);
  /* Move into view */
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-activity-inner h1 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  margin-right: 10px;
}

.main-activity-inner h1::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 18%;
  width: 50px;
  height: 3px;
  background-color: var(--hero-background);
  transform: translateX(-50%);
}

/* Arrow link styles */
.arrow-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--hero-background);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.arrow-link i {
  pointer-events: none;
}

.arrow-link:hover {
  background-color: black;
}




.custom-card {
  flex: 1 1 200px;
  transition: transform 0.3s ease-in-out;
}


.custom-card:nth-child(1) {
  transform: translate(0px, 60px) rotate(-13.74345deg);
}

.custom-card:nth-child(2) {
  transform: translate(0px, 3.68011px) rotate(-7.8727deg);
}

/* .custom-card:nth-child(3) {
  transform: translate(0px, -16px) rotate(0deg);
} */

.custom-card:nth-child(3) {
  transform: translate(0px, 3.68559px) rotate(7.87288deg);
}

.custom-card:nth-child(4) {
  transform: translate(0px, 60px) rotate(13.74345deg);
}

@media (max-width: 991px) {
  .custom-card {
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .custom-card {
    transform: none !important;
  }
}/* Image Wrapper */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 40vh; /* Same height as the image */
  overflow: hidden; /* Prevents overflow */
  border-radius: 8px; /* Matches the image border-radius */
}

/* Image Styling */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.custom-card:hover .image-wrapper img {
  transform: scale(1.1); /* Scales up the image */
  filter: brightness(0.9); /* Darkens the image slightly */
}

/* Card Container */
.custom-card {
  height: 350px;
  width: 250px;
  margin: 10px;
  overflow: hidden; /* Ensures the card itself doesn't overflow */
  text-align: center;
  perspective: 1000px;
}

/* Card Content */
.destination-desc {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 10px;
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

/* Card Content Text */
.destination-desc .card-content h5 {
  font-size: 1.2rem;
  color: black;
  margin-top: 10px;
  margin-bottom: 5px;
}

.destination-desc .card-content a {
  text-decoration: none;
  color: #6e7070;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.destination-desc .card-content a:hover {
  text-decoration: underline;
  color: black;
}
/* Hero Button */
.hero-btn {
  background-color: var(--hero-background);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid var(--hero-background);
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: white;
  color: var(--hero-background);
  transform: scale(1.05);
}



@media (max-width: 576px) {
  .hero-btn {

    padding: 10px 18px;
    border-radius: 8px;

  }
}



/* Highlight Box */
.highlight-box {
  background-color: #ECF5E8;
  color: var(--hero-background);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

/* About Section */

.main-about-header p {
  font-size: 16px;
}

.main-about-header h1 {
  font-size: 48px;
  color: black;
  font-weight: bold;
}

@media (max-width: 576px) {

  .main-about-header h1 {
    font-size: 32px;
  }
}

.main-destination {
  padding: 120px 80px;
}

.main-contact-banner {
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  z-index: 0; /* Ensure the main container is below the text */
}

.main-contact-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Black shadow with 50% opacity */
  z-index: -1; /* Place the shadow behind the text */
}

.main-contact-banner h1 {
  position: relative;
  z-index: 1; /* Ensure the text is above the shadow */
}

/* Responsiveness for screen width <= 768px (tablets and below) */
@media (max-width: 768px) {

  .destination-small,
  .destination-large {
    height: 300px;
    /* Reduce height for smaller screens */
  }

  .main-destination {
    padding: 40px 10px;
  }

  .destination-small,
  .destination-large {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .destination-content h1 {
    width: 70%;
    font-size: 16px;
  }

  /* Adjust image zoom effect for smaller screens */
  .destination-small:hover img,
  .destination-large:hover img {
    transform: scale(1.05);
  }
}

/* Responsiveness for screen width <= 576px (mobile phones) */
@media (max-width: 576px) {
  .main-destination {
    padding: 20px 5px;
  }

  .destination-small,
  .destination-large {
    height: 250px;
    /* Further reduce height for very small screens */
  }

  .destination-main-img,
  .destination-sec-img {
    flex: 1 1 100%;
  }

  .destination-main-content,
  .destination-sec-content {
    padding: 10px;
    font-size: 0.9rem;
  }

  .main-destination-banner h1 {
    font-size: 2rem;
  }

  /* Adjust image zoom effect for mobile screens */
  .destination-small:hover img,
  .destination-large:hover img {
    transform: scale(1.03);
  }
}

/* Additional flexibility for large screen sizes (>= 1200px) */
@media (min-width: 1200px) {

  .destination-small,
  .destination-large {
    height: 400px;
    /* Increase height for larger screens */
  }

  .destination-content h1 {
    font-size: 22px;
  }
}











.main-destination-banner {
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  z-index: 0;
}

.main-destination-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.main-destination-banner h1 {
  position: relative;
  z-index: 1;
}

/* Shared styles for anchor */
.destination-small,
.destination-large {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 400px;
}

/* Image wrapper to manage zoom overflow */
.destination-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.destination-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.destination-small:hover .destination-img-wrapper img,
.destination-large:hover .destination-img-wrapper img {
  transform: scale(1.1);
}

/* Small & Large column layout */
.destination-small {
  flex: 1;
}

.destination-large {
  flex: 2;
}

/* Content overlay */
.destination-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 101, 71, 0);
  color: white;
  padding: 20px;
  transition: background-color 0.5s ease, opacity 0.5s ease;
}

.destination-content h1 {
  background-color: rgba(0, 101, 71, 0.8);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 18px;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.5s ease, transform 0.5s ease;
}

.destination-content p {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.destination-small:hover .destination-content,
.destination-large:hover .destination-content {
  background-color: rgba(0, 101, 71, 0.8);
}

.destination-small:hover .destination-content h1,
.destination-large:hover .destination-content h1 {
  background-color: transparent;
  transform: translateX(-50%) translateY(-50%);
}

.destination-small:hover .destination-content p,
.destination-large:hover .destination-content p {
  display: block;
  opacity: 1;
}
























.main-contact-banner {
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.main-contact-banner h1 {
  font-size: 4rem;
  text-align: center;
}

@media (max-width: 576px) {
  .contact-header {
    padding: 20px 5px;
  }



  .main-contact-banner h1 {
    font-size: 2rem;
  }
}


.main-blog-section {
  position: relative;
  background: linear-gradient(to bottom, transparent 50%, var(--hero-background) 100%);
  padding: 20px;
}


.main-blog {
  padding: 60px 0px 0px 0px;
}

@media (max-width: 576px) {
  .main-blog {
    padding: 20px 0px 0px 0px;
  }
}

.item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-details {
  padding-bottom: 132%;
}

.blog-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
}

.item img {
  transition: all .5s;
}

.con a {
  text-decoration: none;
  color: black;
}

.item .date {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  padding: 10px 10px 5px 10px;
  text-align: center;
  background: var(--hero-background);
}

.item .date span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.5em;
  margin-bottom: 0px;
}

.item .date i {
  display: block;
  font-size: 18px;
  font-style: normal;
  color: #fff;
  line-height: 1.5em;
  font-weight: 500;
}

.item .con {
  margin: -160px 20px 90px;
  padding: 25px;
  border-radius: 0;
  overflow: hidden;
  transition: .2s cubic-bezier(.3, .58, .55, 1);
  bottom: -40px;
  position: relative;
  background: #fff;
}

.item .con .category {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.item .con .main-blog-title,
.blog .item .con .main-blog-title a,
.blog .item .con h5 a {
  color: #0f2454;
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.5em;
}

.item:hover .con {
  transform: translateY(-40px);
  /* Move content up on hover */
}

.main-blog-header h1 {
  font-size: 48px;

}

@media (max-width: 576px) {
  .main-blog-header h1 {
    font-size: 32px;

  }
}





.contact-details-form {
  display: flex;
  justify-content: flex-start;
  /* Align form to the left */
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 40px;
}

.contact-form .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.contact-form .form-description {
  font-size: 1rem;
  color: #555;
}

.contact-form .input-with-icon {
  position: relative;
}

.contact-form .input-with-icon input,
.contact-form .input-with-icon select,
.contact-form .input-with-icon textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.contact-form .input-with-icon input:focus,
.contact-form .input-with-icon select:focus,
.contact-form .input-with-icon textarea:focus {
  border-color: black;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact-form .input-with-icon i {
  position: absolute;
  top: 10px;
  right: 10px;
  /* Move the icon to the top-right corner */
  color: #999;
  font-size: 1.2rem;
  pointer-events: none;
}

.contact-form .input-with-icon textarea {
  padding: 12px 15px;
  resize: none;
  padding-right: 40px;
  /* Space for icon */
}

.contact-form .input-with-icon select {
  padding-right: 40px;
  /* Space for icon */
}

.contact-form button.btn-custom {
  background-color: var(--hero-background);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid var(--hero-background);
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-form button.btn-custom:hover {
  background-color: white;
  color: var(--hero-background);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-details-form {
    height: auto;
    padding: 20px 0;
  }

  .contact-form {
    width: 100%;
    padding: 20px;
  }

  .contact-form .form-title {
    font-size: 1.5rem;
  }

  .contact-form .form-description {
    font-size: 0.9rem;
  }

  .contact-form .input-with-icon input,
  .contact-form .input-with-icon select,
  .contact-form .input-with-icon textarea {
    font-size: 0.9rem;
  }

  .contact-form button.btn-custom {
    font-size: 12px;
    padding: 10px;
  }
}


.contact-page {
  padding: 120px 60px;
}

@media (max-width: 576px) {
  .contact-page {
    padding: 60px 20px;
  }
}

.contact-details {
  border: 1px solid #E1E4E6;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.4s ease;
  text-align: left;
  /* Align text to the left */
}

.contact-details:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Align icon and text horizontally */
.contact-details-icon,
.contact-details-info {
  display: inline-block;
  vertical-align: middle;
}

.contact-details-icon {
  width: 60px;
  height: 60px;
  background-color: var(--hero-background);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  margin-right: 24px;
  transition: background-color 0.4s ease, border 0.4s ease, color 0.4s ease;
}

.contact-details-icon i {
  font-size: 24px;
  color: #fff;
  transition: color 0.4s ease;
}

.contact-details:hover .contact-details-icon {
  background-color: white !important;
  border: 1px solid var(--hero-background);
}

.contact-details:hover .contact-details-icon i {
  color: var(--hero-background);
}


.contact-details-info h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.contact-details-info p {
  font-size: 1rem;
  color: #7f8c8d;
  margin: 4px 0 0;
}


.contact-details-info a {
  text-decoration: none;
  color: #7f8c8d;

}

@media (max-width: 768px) {
  .contact-details {
    text-align: center;
  }

  .contact-details-icon,
  .contact-details-info {
    display: block;
    margin: 0 auto;
  }

  .contact-details-icon {
    margin-bottom: 12px;
  }
}




/* history */


.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.timeline-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
}

/* Timeline Styles */
.timeline {
  position: relative;
  margin: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #000;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  flex-wrap: wrap;
}

.timeline-item:nth-child(odd) .timeline-content {
  order: 1;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-image {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 1;
}

.timeline-content {
  max-width: 45%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.timeline-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-color: #000;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 3;
}

/* Arrows in Description */
.timeline-content::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 15px;
  height: 15px;
  background-color: #000;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -15px;
  right: auto;
  transform: rotate(180deg);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 0px;
  }

  .timeline-item {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    max-width: 100%;
    margin: 0 0 20px 16px;
  }

  .timeline-item:nth-child(odd) .timeline-image,
  .timeline-item:nth-child(even) .timeline-image {
    width: 100%;
    margin: 0;
  }

  .timeline-item::before {
    left: 0px;
  }

  .timeline-content::after {
    display: none;
  }
}

@media screen and (max-width:1000px) {


  .timeline-item:nth-child(odd) .timeline-image {
    order: 0;

  }
}

.main-history-banner {
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.main-history-banner h1 {
  font-size: 4rem;
  text-align: center;
}

@media (max-width: 576px) {
  .history-header {
    padding: 20px 5px;
  }



  .main-history-banner h1 {
    font-size: 2rem;
  }
}



/* history ends */