section.home {
  /* padding: 1rem; */
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}

.home video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: -1;
}

.home .home-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  color: white;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); */
  background: rgba(0, 0, 0, 0.3);
}

.home .home-box .content {
  width: 100%;
  /* height: calc(100% - 65px); */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(7, 7, 7, 0.295);
  position: absolute;
  /* Position it to cover the whole box */
  top: 0;
  /* Align to the top of the parent container */
  left: 0;
  z-index: 100;
}

.home .home-box .content h5 {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 3rem;
  font-family: "montserrat", "Dancing Script";
  font-weight: 500;
  margin-bottom: 2rem;
}

.home .home-box .content h1 {
  font-size: 4rem;
  max-width: 75rem;
  color: var(--white-color);
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home .home-box .content p {
  color: #eee;
  font-weight: 300;
  max-width: 40rem;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.home .home-box .content .search {
  width: 100%;
  max-width: 38rem;
  height: 45px;
  background: var(--white-color);
  border-radius: 3rem;
  display: flex;
  align-items: center;
  padding: 0.3rem;
}

.home .home-box .content .search i {
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0.6rem;
}

.home .home-box .content .search input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-weight: 400;
}

.home .home-box .content .search button {
  height: 100%;
  padding: 0 1rem;
  border-radius: inherit;
  background: var(--green-color);
  border: none;
  outline: none;
  color: var(--white-color);
  font-weight: 400;
  cursor: pointer;
}

.home .home-box .content .search button:hover {
  background: var(--primary-color);
}

.home .home-box .content h5,
.home .home-box .content h1,
.home .home-box .content p,
.home .home-box .content .search {
  transform: translate(0, 100px);
  opacity: 0;
}

/*##################################### Home Section Ends #####################################*/

/*##################################### swiper CSS start #####################################*/
.swiper-container {
  max-width: 100%;
  position: relative;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.swiper-slide {
  padding: 15px;
  height: unset !important;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  border-radius: 15px;
  transform: translate(0, 100px);
  opacity: 0;
  
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover; /* Crops the image to maintain square proportions */
  border-radius: 5px;
  
}
.swiper-slide :hover {
  transform: scale(1.1); /* Zoom in effect */
  opacity: 0.9; /* Slightly dim the image */
}

.swiper-slide .content {
  padding: 20px;
}
.swiper-slide h4 {
  font-size: 1.5rem;
  /* Slightly larger heading */
  margin: 1.5rem 0;
  /* Space around the heading */
  font-weight: bold;
  color: #333;
  /* Darker text for readability */
}

.swiper-slide p {
  color: #666;
  /* Softer gray for text */
  font-size: 1rem;
  /* Adjust font size */
  line-height: 1.5;
  /* Improve readability */
}

.swiper-pagination {
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    padding: 0px;
  }

  .swiper-slide .content {
    padding: 30px;
  }
}

@media screen and (max-width: 425px) {
  .swiper-slide .content {
    padding: 10px;
  }
}

/*##################################### swiper CSS End #####################################*/

/* ############################## destination section starts here ############################## */
.destinations {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.destinations .container {
  width: 100%;
}

.destinations .container .container-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destinations .container .container-box .heading {
  max-width: 30rem;
}

.destinations .container .container-box .content {
  max-width: 35rem;
}

.destinations .container .container-box .content p {
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
}

.destinations .container .container-box .content a {
  color: var(--green-color);
  font-weight: 600;
}

.destinations .container .container-box .content a i {
  margin-left: 0.5rem;
}

.destinations .container .container-box .content a:hover i {
  margin-left: 0.1rem;
}

.gallery {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery .box {
  height: 23rem;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 0.8rem;
  position: relative;
}

.gallery .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery .box .text {
  position: absolute;
  bottom: 0;
  padding: 1.5rem 2rem;
  left: 0;
  z-index: 1;
}

.gallery .box .text h2 {
  font-size: 1.8rem;
  color: var(--white-color);
  font-weight: 500;
}

.destinations .container .container-box .heading,
.destinations .container .container-box .content {
  transform: translate(-200px);
  opacity: 0;
}

.destinations .gallery .box {
  transform: translate(0, 100px);
  opacity: 0;
}

/* ############################## destination section ends here ############################## */

/* ############################## featured section starts here ##############################  */

.featured {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.featured .gallery .box:first-child {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 2rem 1.5rem;
}

.featured .gallery .box:first-child h2 {
  margin-bottom: 0.5rem;
}

.featured .gallery .box:first-child p {
  margin-bottom: 0.5rem;
  color: #666;
}

.featured .gallery .box:first-child a {
  position: absolute;
  bottom: 2rem;
  padding: 0.4rem 1rem;
  color: var(--white-color);
  background: var(--green-color);
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.featured .gallery .box:first-child a:hover {
  background: #02636e;
}

.featured .gallery .box .content {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem 2rem;
}

.featured .gallery .box .content h2 {
  font-weight: 500;
  color: var(--white-color);
}

.featured .gallery .box .content p {
  font-size: 0.9rem;
  color: #eee;
}

.featured .gallery .box .content .review-and-idr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured .gallery .box .content .review-and-idr .review {
  font-size: 0.9rem;
  color: #eee;
}

.featured .gallery .box .content .review-and-idr .review i {
  color: #ffa600;
}

.featured .gallery .box .content .review-and-idr p {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white-color);
}

.featured .gallery .box {
  transform: translate(0, 100px);
  opacity: 0;
}

/* ############################## featured section ends here ############################## */

/* ############################## feedback section starts here ############################## */
.feedback {
  background: url("..\Images\section-background.webp");
  background-position: center;
  background-size: cover;
  margin-top: 6rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.feedback .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.feedback .container h4 {
  color: rgb(255 255 255/90%);
}

.feedback .container h2 {
  max-width: 40rem;
  color: var(--white-color);
  text-align: center;
}

.feedback .container p {
  color: #eee;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

.feedback .voices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.feedback .voices .voice {
  flex: 1 0 320px;
  background: var(--white-color);
  /* background-color: #b8c467; */
  padding: 2rem;
  border-radius: 0.7rem;
}

.feedback .voices .voice .profile {
  display: flex;
  align-items: center;
}

.feedback .voices .voice .profile .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b8c467;
  /* Choose a color or variable */
  color: white;
  font-size: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.feedback .voices .voice .profile span {
  font-weight: bold;
}

.feedback .voices .voice .profile .detail {
  margin-left: 1rem;
}

.feedback .voices .voice .profile .detail li {
  list-style: none;
}

.feedback .voices .voice .profile .detail li:first-child {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.feedback .voices .voice p {
  margin-top: 1rem;
}

.feedback .container .label,
.feedback .container .heading,
.feedback .container .paragraph {
  transform: translate(0, 10px);
  opacity: 0;
  color: #000;
}

.feedback .voices .voice {
  transform: translate(0, 100px);
  opacity: 0;
}

/* ############################## feedback section ends here ############################## */

/* ############################## article section starts here ############################## */

.article {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 5rem;
}

.article .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.article .container .latest-article,
.article .container .more-article {
  width: 100%;
  flex: 1 0 350px;
}

.article .container .latest-article img {
  width: 100%;
  height: 28rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.article .container .latest-article p {
  margin: 0.8rem 0;
  color: #666;
}

.article .container .latest-article h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.article .container .latest-article .author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.article .container .latest-article .author img {
  width: 30px;
  height: 30px;
  border-radius: 3rem;
}

.article .container .latest-article .author p {
  font-size: 0.9rem;
}

.article .container .more-article {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.article .container .more-article .box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.article .container .more-article .box img {
  width: 135px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.article .container .more-article .text h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.article .container .more-article .text li {
  margin-top: 0.3rem;
  list-style: none;
  color: #666;
}

.article .label,
.article .heading {
  opacity: 0;
}

.article .latest-article,
.article .more-article .box {
  transform: translate(-200px, 0);
  opacity: 0;
  transition: all 0.4s ease-out;
}

/* ############################## Responsive CSS Codes ##############################  */

@media (max-width: 910px) {
  .destinations .container .container-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .heading {
    font-size: 2rem;
  }

  .home .home-box .content {
    padding: 1.5rem;
  }

  .destinations .container .container-box .content {
    font-size: 0.9rem;
  }

  .feedback .container p {
    font-size: 0.9rem;
  }
}

@media (max-width: 607px) {
  .home .home-box .content h1 {
    font-size: 1.8rem;
  }

  .home .home-box .content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 910px) {
  .destinations .container .container-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }

  .home .home-box .content {
    padding: 1rem;
    text-align: center;
  }

  .travel .container {
    gap: 0; /* No gap between cards */
    padding: 0; /* Adjust padding */
  }

  .travel .container .box img {
    height: 20rem;
    width: 20rem;
    border-radius: 5px;
    object-fit: cover;
  }

  .travel .box {
    width: 100vw;
    /* Take up the full viewport width */
  }

  .destinations .container .container-box .content {
    font-size: 0.9rem;
  }
}

@media (max-width: 457px) {
  .home .home-box .content h1 {
    font-size: 1.8rem;
  }

  .home .home-box .content p {
    font-size: 0.8rem;
  }

  .article .container .latest-article,
  .article .container .more-article {
    width: 100%;
  }

  .article .container .more-article .box img {
    width: 100px;
    height: auto;
  }

  .article .container .more-article .text h3 {
    font-size: 1.2rem;
  }

  .travel .container {
    gap: 4rem;
    /* No gap between cards */
    padding-right: 10px;
    /* Adjust padding */
  }

  .travel .box {
    width: 100vw;
    /* Take up the full viewport width */
  }

  .article .container .latest-article,
  .article .container .more-article {
    width: 100%;
    flex: 1 0 250px;
  }

  .article .container .more-article .box img {
    width: 100px;
    height: 85px;
  }

  .article .container .more-article .text h3 {
    font-size: 1.1rem;
  }
}
