/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  margin-bottom: 10px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ..header-main */
.header-main {
  background: linear-gradient(to right, #504563, #bc866b);
  color: white;
  padding: 10px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  z-index: 99999;
}

img.mobile-logo {
  display: none;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: auto;
  float: left;
}
.logo a img {
  max-width: 285px;
}
.toggle-btn {
  width: auto;
  display: none;
  flex-direction: column;
  gap: 5px;
}

span.top-line,
span.middle-line,
span.bottom-line {
  width: 30px;
  height: 3px;
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  transition: 0.3s;
}

span.middle-line {
  width: 23px;
}

nav.nav-bar {
  width: auto;
  float: right;
}

.header-main nav.nav-bar ul {
  list-style: none;
  padding: 0;
}

.header-main nav.nav-bar ul li {
  display: inline-block;
  margin: 0 15px;
}

.header-main nav.nav-bar ul li a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-main nav.nav-bar ul li a:hover {
  color: #ff7f50; /* Coral color */
}

/* Hero Section */
#hero {
  background: url("../images/banner-bg.webp") no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

#hero:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000061;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(to right, #322d47c2, #ac7e51a1);
}

#hero .hero-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

#hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff7f50;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  overflow: hidden;
  border-radius: 5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.cta-button:before {
  width: 100%;
  content: "";
  position: absolute;
  height: 100%;
  background: transparent;
  transform: rotate(-45deg);
  left: -82%;
  top: 0;
  transition: ease all 0.5s;
}

.cta-button:hover::before {
  background-color: #ffffff8c;
  left: 82%;
}

/* Destinations Section */
#destinations,
#trandings {
  background-color: white;
  padding: 50px 20px 20px;
  text-align: center;
  width: 100%;
  float: left;
  overflow: hidden;
}
div#trandings {
  padding: 50px 0;
}

#destinations h2,
.popular-sec h2,
#trandings h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.destination-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.destination-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 90%;
  margin: auto;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  font-size: 26px;
  margin: 10px 0;
}

.destination-card p {
  padding: 0 15px;
  font-size: 17px;
}

.destination-card .more-info {
  display: inline-block;
  background-color: #ff7f50;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 15px 0;
  transition: background-color 0.3s;
}

.destination-card .more-info:hover {
  background-color: #ff6347;
}

/* About Section */
section#about-sec,
section#trend-sec {
  width: 100%;
  float: left;
}
.about-main {
  background-color: #fafafa;
  padding: 50px 20px 70px;
  width: 100%;
  float: left;
}

.about-main #about h2,
#services-main h2 {
  font-size: 2.5rem;
  margin-bottom: 0px;
}

.about-main #about p {
  font-size: 1.2rem;
  margin: 0 auto;
  text-align: justify;
}

div#about {
  width: 45%;
  float: right;
}
.about-cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-img {
  width: 50%;
  float: left;
  border-radius: 15px;
  position: relative;
  margin-top: 50px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.prim-image {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  outline: 5px solid #ddd;
  outline-offset: 20px;
}
.prim-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.sec-img {
  width: 365px;
  position: absolute;
  right: 25px;
  bottom: 11px;
  outline: 5px solid #ddd;
  height: 300px;
  border-radius: 50%;
  animation: rotate 5s infinite;
  outline-offset: 25px;
}
.sec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rotate-rev 5s infinite;
  border-radius: 50%;
}

/*Trending-sec*/
.trending-cards {
  width: 100%;
  float: left;
}
.trend-card-main {
  width: 100%;
  float: left;
  height: 400px;
}

a.trending-card {
  width: 100%;
  display: inline-block;
  margin: auto;
  height: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.trending-card:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 99;
  content: "";
  opacity: 0.5;
  left: 0;
  top: 0;
  transition: 0.5s;
}
.trending-card:hover::before {
  opacity: 0;
}
a.trending-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trending-card h3 {
  position: absolute;
  float: left;
  bottom: 0;
  left: 0;
  padding: 0 25px;
  color: #fff;
  z-index: 99;
  font-size: 20px;
}
/*Services Section */
div#services-main {
  width: 100%;
  float: left;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 99;
}

.services {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 0 10px #ddd;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
  margin-top: -75px;
}

.serv-box {
  width: auto;
  text-align: center;
  float: left;
  padding: 0 25px;
}
.serv-box img {
  max-width: 70px;
}
.serv-box h4 {
  font-size: 21px;
  color: #ff7f50;
}
.serv-box p {
  font-size: 15px;
  color: #777;
}

/*To do section*/
.popular-sec {
  width: 100%;
  float: left;
  padding: 50px 0;
  background: #fafafa;
  text-align: center;
  overflow: hidden;
}
.image-gallary {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 30px;
  width: 100%;
  float: left;
}
a.image-box {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 30px;
}
.feature_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.feature_image:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 7, 60, 0) 0%, #05073c 100%);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}

a.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

a.image-box:hover img {
  transform: scale(1.1);
}

.image-gallary > *:nth-child(1) {
  grid-column: span 3;
}
.image-gallary > *:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}
.image-gallary > *:nth-child(3) {
  grid-column: span 5;
}
.image-gallary > *:nth-child(4) {
  grid-column: span 3;
}
.image-gallary > *:nth-child(5) {
  grid-column: span 2;
}
.image-gallary > *:nth-child(6) {
  grid-column: span 3;
}
.image-gallary > *:nth-child(7) {
  grid-column: span 3;
}
.feature-txt {
  width: 100%;
  display: flex;
  z-index: 9;
  position: relative;
  color: #fff;
  align-items: flex-end;
  height: 100%;
}
/* Footer */

.footer-sec {
  width: 100%;
  float: left;
  background: #000000;
  padding: 50px 0 0;
  color: #fff;
  text-align: center;
}
.footer-content {
  width: 100%;
  float: left;
}
.ft-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  text-align: left;
}

.ft-logo {
  width: auto;
  float: left;
}
.ft-logo a {
  display: block;
  width: 100%;
}
.ft-logo a img {
  width: 100%;
}
.quick-link {
  width: 30%;
  display: flex;
  color: #fff;
  justify-content: start;
  align-items: center;
}
.quick-link ul {
  list-style: none;
}
.quick-link ul li {
  width: 100%;
  display: block;
}
.quick-link ul li h4 {
  font-size: 20px;
  text-transform: uppercase;
}

footer .footer-content nav.nav-bar ul {
  list-style: none;
  padding: 0;
}

footer .footer-content nav.nav-bar ul li {
  display: inline;
  margin: 0 10px;
}

footer .footer-content nav.nav-bar ul li a {
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

footer .footer-content nav.nav-bar ul li a:hover {
  color: #ff7f50;
}

ul.policy {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff7f4f, #6a0000, #9d0000);
}

.ft-bottom {
  width: 100%;
  float: left;
  padding: 20px 0;
  margin-top: 10px;
  border-top: 1px solid #fff;
}

.quick-link ul li a {
  display: inline-block;
  font-size: 18px;
  margin: 7px 0;
  transition: 0.3s;
}

.quick-link ul li a:hover,
ul.policy li a:hover {
  color: yellow;
}

/* Back to Top Button Styles */
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  color: #ff7f50;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border: 2px solid #ff7f50;
}

#backToTopBtn:hover {
  background-color: #ff7f50;
  color: #fff;
}

/* slider css  */

#dest-sec .slick-track {
  padding-bottom: 30px;
}

#dest-sec ul.slick-dots {
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#dest-sec .slick-dotted.slick-slider {
  margin-bottom: 30px;
  padding-bottom: 45px;
}

#dest-sec .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: #ff7f50;
  border-radius: 20px;
  transition: 0.5s;
}

#dest-sec .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 1;
}

#dest-sec .slick-dots li button:before {
  content: "";
  height: 100%;
  width: 100%;
}

#dest-sec .slick-dots li.slick-active {
  background: #ff7f50;
  opacity: 1;
  width: 10px;
  border-radius: 50%;
}
#dest-sec .slick-prev,
#dest-sec .slick-next {
  z-index: 99;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #ff7f50;
}
#dest-sec .slick-prev {
  left: -60px;
}
#dest-sec .slick-next {
  right: -60px;
}
#dest-sec .slick-prev:before,
#dest-sec .slick-next::before {
  content: "\f105";
  color: #ff7f50;
  font-family: "fontawesome";
  opacity: 1;
  transition: 0.3s;
}
#dest-sec .slick-prev:before {
  transform: rotate(180deg);
}
#dest-sec .slick-prev:hover,
#dest-sec .slick-prev:focus,
#dest-sec .slick-next:hover,
#dest-sec .slick-next:focus {
  background: #ff7f50;
}
#dest-sec .slick-prev:hover:before,
#dest-sec .slick-prev:focus:before,
#dest-sec .slick-next:hover:before,
#dest-sec .slick-next:focus:before {
  color: #fff;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff7f4f;
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-rev {
  0% {
    transform: rotate(-360deg);
  }
}

/*Privacy policy page css*/

.policy-main,
.terms-main {
  width: 100%;
  float: left;
  margin-top: 100px;
  /* text-align: center; */
}

.heading-main h1 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #ff7f4f;
  text-align: center;
}
.policy-main p,
.terms-main p {
  font-size: 18px;
  text-align: justify;
  margin-bottom: 16px;
}
.policy-main h2,
.terms-main h2 {
  font-size: 25px;
  /* margin-bottom: 15px; */
  color: #ff7f4f;
}
.policy-main ul,
.terms-main ul {
  margin-left: 20px;
}

.sub_content {
  width: 100%;
  float: left;
  padding-left: 25px;
}
.terms-main h3 {
  font-size: 20px;
  color: #ff7f4f;
}

/*responsive design*/
@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1024px) {
  .trending-card {
    width: 30%;
    float: left;
    max-width: 100%;
  }

  .destination-card h3,
  .trending-card h3 {
    font-size: 27px;
    margin: 10px 0;
  }

  .destination-card p,
  .trending-card p {
    padding: 0px 20px;
    font-size: 16px;
  }

  .about-cont {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  div#about {
    width: 100%;
    text-align: center;
    margin-top: 35px;
  }

  .about-img {
    width: 100%;
    height: 550px;
  }

  .prim-image {
    width: 85%;
    height: 100%;
  }
  .sec-img {
    top: 11px;
    right: 11px;
  }
  #hero h1 {
    font-size: 45px;
  }
}

@media screen and (max-width: 920px) {
  nav.nav-bar {
    transform: scaleY(0);
    transform-origin: top;
    width: 100%;
    position: absolute;
    top: 95px;
    left: 0;
    height: 215px;
    transition: 0.5s;
    background: #000;
  }
  .header-main nav.nav-bar ul li {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .toggle-btn {
    display: flex;
  }
  .header-main nav.nav-bar ul li a {
    padding: 10px 0;
    display: block;
    border: 1px solid #fff;
    border-left: none;
    border-right: none;
  }

  .active .header-main nav.nav-bar {
    transform: scale(1);
  }
  .active span.middle-line {
    display: none;
  }
  .active span.top-line {
    transform: rotate(45deg);
  }
  .active span.bottom-line {
    transform: rotate(-45deg);
    margin-top: -7px;
  }
  div#services-main {
    display: none;
  }
  .trending-card {
    width: 48%;
  }
  .slick-next {
    right: -40px;
  }
  .slick-prev {
    left: -40px;
  }
  #hero {
    min-height: 400px;
  }
  .ft-main {
    flex-direction: column;
  }
  .quick-link {
    width: 100%;
  }
  .ft-logo a img {
    max-width: 360px;
  }
  .quick-link ul li h4 {
    border-bottom: 1px solid #fff;
    display: inline-block;
    font-size: 18px;
  }
  .image-gallary > *:nth-child(1) {
    grid-column: span 6;
  }
  .image-gallary > *:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
  }
  .image-gallary > *:nth-child(3) {
    grid-column: span 12;
    grid-row: 2;
  }
  .image-gallary > *:nth-child(4),
  .image-gallary > *:nth-child(5),
  .image-gallary > *:nth-child(6) {
    grid-column: span 4;
    grid-row: span 8;
  }
  .header-main {
    padding: 10px 0;
  }
  .about-main {
    padding: 50px 15px 70px;
    overflow: hidden;
  }
  .about-img {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .prim-image {
    display: none;
  }
  .sec-img {
    position: static;
    width: 335px;
    height: 285px;
  }
  .active div#hero {
    margin-top: 292px;
  }
  .trending-card h3 {
    font-size: 18px;
}
}

@media screen and (max-width: 600px) {
  #hero h1 {
    font-size: 27px;
  }
  .prim-image {
    display: none;
  }
  .sec-img {
    position: static;
    width: 335px;
    height: 285px;
  }
  .trending-card {
    width: 90%;
  }
  .about-img {
    height: auto;
  }
  .quick-link ul li a {
    font-size: 16px;
  }
  #destinations h2,
  .popular-sec h2,
  #trandings h2,
  .about-main #about h2,
  #services-main h2 {
    font-size: 29px;
  }
  .image-gallary {
    display: flex;
    flex-direction: column;
  }
  a.image-box {
    width: 100%;
    height: 180px;
  }
  .footer-sec {
    padding: 10px 0 0 0;
  }
  .about-main {
    padding: 50px 15px 70px;
  }
  .heading-main h1 {
    font-size: 26px;
  }
  .policy-main h2,
  .terms-main h2 {
    font-size: 20px;
  }
  .policy-main p,
  .terms-main p {
    font-size: 16px;
  }
  nav.nav-bar {
    top: 77px;
  }
  .error-image,.error-content{
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .logo a img {
    max-width: 202px;
  }
  /* .image-gallary > *:nth-child(1),.image-gallary > *:nth-child(1),.image-gallary > *:nth-child(1),.image-gallary > *:nth-child(1),.image-gallary > *:nth-child(1),.image-gallary > *:nth-child(1) {
  grid-column: span 12;
  grid-row: 2;
} */
  .sec-img {
    position: static;
    width: 250px;
    height: 200px;
  }
  .trending-card h3 {
    font-size: 18px;
}
}



.error-main {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 95px;
}
.error-page {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.error-image {
  width: 50%;
  float: left;
}
.error-main img {
  width: 100%;
}

.error-content {
  width: 50%;
  float: right;
}

.error-content h1 {
  font-size: 130px;
}