@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --primary-color: #3d5cb8;
  --primary-color-dark: #334c99;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f1f5f9;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif!important;
}


a{
    color:blue ;
}


 body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__container a {
  text-decoration: none;
  color: #000;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.btn {
  padding: 0.75rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: flex;
}

body {
  font-family: "Poppins", sans-serif;
}

#btn-back-to-top {
  position: fixed;
  background-color: #3d5cb8;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  z-index: 999;
  border: 1px solid #3d5cb8;
}

#banner a {
  text-decoration: none;
}

#banner .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#banner .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}



#banner {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#banner .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#banner .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#banner .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#banner .carousel-content {
  text-align: center;
}
#banner h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#banner h1 span {
  color: #ffb03b;
}
#banner h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#banner h2 span {
  color: #ffb03b;
}

#banner p {
  width: 100%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 20px;
}

#banner .fa-solid {
  font-size: 28px;
  color: #fff;
}

#banner .m {
  margin-top: 100px;
}

#banner .fa-solid {
  margin-top: 30%;
}

#banner .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}




@media (max-width: 768px) {
  #banner h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #banner p {
    width: 100%;
  }

}

.first_container .subheader {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 5px;
}

.first_container .section__header {
  text-align: center;
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1rem;
}

.first_container .description {
  text-align: center;
  color: var(--text-light);
}

.plan__grid {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.plan__content .number {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 2rem;
}



.plan__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.plan__content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.plan__image {
  position: relative;
}

.plan__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.plan__image img:nth-child(1) {
  max-width: 250px;
  transform: translate(calc(-50% - 9rem), calc(-50% + 5rem));
  z-index: 3;
}

.plan__image img:nth-child(2) {
  max-width: 260px;
  transform: translate(-50%, calc(-50% - 5rem));
  z-index: 2;
}

.plan__image img:nth-child(3) {
  max-width: 230px;
  transform: translate(calc(-50% + 9rem), calc(-50% + 5rem));
}

.memories {
  background-color: var(--extra-light);
}

.memories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.memories__header .section__header {
  max-width: 600px;
}

.memories__header .view__all {
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  white-space: nowrap;
  outline: none;
  border: 1px solid var(--text-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.memories__header .view__all:hover {
  background: #334c99;
  color: #fff;
}

.memories__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.memories__card {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 5rem;
  background-color: var(--white);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
}

.memories__card span {
  display: inline-block;
  padding: 20px 32px;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.memories__card:nth-child(2) span {
  background-color: #e98b6d;
}

.memories__card:nth-child(3) span {
  background-color: #ffcca3;
}

.memories__card:nth-child(4) span {
  background-color: #e98b6d;
}

.memories__card:nth-child(5) span {
  background-color: #ffcca3;
}

.memories__card:nth-child(6) span {
  background-color: var(--primary-color);
}

.memories__card h5 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.memories__card p {
  color: var(--text-light);
  line-height: 1.75rem;
}



@media (width < 1200px) {

  .section__container.header__container,
  .section__container.first_container,
  .section__container.lounge__container {
    overflow: hidden;
  }

  .memories__grid {
    gap: 3rem;
  }
}

@media (width < 900px) {
  nav .btn {
    display: none;
  }


  .plan__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .plan__image {
    min-height: 600px;
    grid-area: 1/1/2/2;
  }

  .memories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }


}

@media (width < 600px) {
  .nav__links {
    display: none;
  }


  .memories__header {
    flex-direction: column;
  }

  .memories__grid {
    grid-template-columns: repeat(1, 1fr);
  }


}


.section__container .img-container{
  overflow: hidden;
  transition: transform 0.3s;
}



.section__container .img-container img {
  width: 100%;
  transition: transform 0.3s;
  overflow: hidden;
}
.section__container .img-container img{
  transition: 0.5s ease-in-out;
}

.section__container .shadow-img{
  box-shadow: 0px 4px 13px 0px #cbd5e0;
  border-radius: 5px;
}
.section__container .shadow-img:hover .card-img-top {
  transform: scale(1.1);
  
}

.section__container .shadow-img:hover {
  box-shadow: 0px 11px 13px 0px #cbd5e0
}

/* .section__container .card {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.section__container .card img {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
} */



#hero {
  width: 100%;
  height: 100vh;

  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
}

#hero a {
  text-decoration: none;
}

#banner .scrollto i{
  display: inline-block;
  margin: 10px;
  animation: upAndDown 1s infinite alternate;
  text-decoration: none;
  color: #fff;
}


@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px); /* Adjust the value as needed */
  }
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .tour_details h2 {

    font-size: 24px !important;
    font-weight: 700;
  }
}

@media (max-width: 1000px) {

  .carousel-item {
    margin-top: 70px;
  }
}

.lead {
  font-weight: 350 !important;
}

.tour_details h2 {
  color: #000;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

.footer .social i {
  font-size: 25px;
}



.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: #485664;
  box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: #485664;
}

.features .nav-link:hover {
  color: #0ea2bd;
}

.features .nav-link.active {
  transition: 0.3s;
  background: #485664 linear-gradient(#0b3e64, rgba(14, 162, 189, 0.6));
  border-color: #0b3e64;
}

.features .nav-link.active h4 {
  color: #ffffff;
}

.features .nav-link.active i {
  color: #ffffff !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features h3 {
  font-weight: 600;
  font-size: 20px;
  color: #485664;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.list-unstyled {
  list-style: none;
  padding: 0;
}

.list-unstyled li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.list-unstyled li i {
  margin-right: 10px; 
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: #0b3e64;
}
.highlights ul i {
  font-size: 24px;
  margin-right: 4px;
  color: #0b3e64;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

    
.carousel i{
  font-size: 22px;
}
.social_media i{
  font-size: 40px;
}
.social_media .ri-whatsapp-fill{
  color: #075E54;
}
.social_media .ri-message-2-fill{
  color: #FFA500;
}
.social_media .ri-facebook-fill{
  color:  #316FF6;
}
.social_media .ri-twitter-fill{
  color:  #1DA1F2;
}
.social_media .ri-mail-fill{
  color:  #696464;
}
.social_media a{
  text-decoration: none;
}

/*** Destination ***/
.destination img {
  transition: .5s;
}

.destination a:hover img {
  transform: scale(1.1);
}
.zoomIn img {
  transition: transform 0.5s ease-in-out;
}

.zoomIn:hover img {
  transform: scale(1.1);
}

.horizontal-card {
        display: flex;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        font-family: Arial, sans-serif;
        transition: transform 0.3s;

    }

    .image-section {
        flex: 1;
        overflow: hidden;
    }

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .horizontal-card:hover .image-section img {
        transform: scale(1.2);
    }

    .details-section {
        flex: 1;
        padding: 20px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .details-section .title {
        margin-bottom: 10px;
        font-size: 18px;
        color: #000;
    }

    .details-section .location {
        font-weight: bold;
    }

    .details-section .duration {
        font-size: 14px;
        color: #222;
    }

     .view-more-link {
      
        font-weight: bold;
        color: #b6492c;
        text-align: left;
        transition: color 0.3s, transform 0.3s;
        display: inline-block;
        position: relative;
        text-decoration: none;
    }

    .view-more-link::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.3s;
    }

    .view-more-link:hover {
        color: #1287b5;
    }

    .view-more-link:hover::after {
        transform: translateX(5px);
    }
    
    
      .whatsapp-catalogue {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 20px auto;
    flex-direction: column;
}

.catalogue-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    width: 100%;
}


.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
}


.mobile-frame {
    height: 400px;
    width: 270px;
    background: #fff;
    border: 10px solid #e0e0e0;
    border-radius: 36px;
    padding: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.text-container {
    flex: 1;
  text-align: left;
}

.text-container h3 {
    color: #128c7e;
    font-size: 26px; 
    margin: 0 0 8px; 
}

.text-container p {
    font-size: 15px; 
    color: #333;
    margin: 0 0 16px; 
    line-height: 1.4; 
}

.catalogue-button {
    display: inline-block;
    background: #0e6d60;
    color: #f0f0f0;
    font-size: 14px; 
    font-weight: bold;
    padding: 10px 16px; 
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catalogue-button:hover {
    background: #1ea54c;
}

@media (max-width: 1000px) {
    .content-container {
        flex-direction: column;
    }
}

.video-sectionf {
        position: relative;
        background-size: cover;
        background-position: center;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
    }

    .video-icon-container {
        display: inline-block;
        position: relative;
        cursor: pointer;
    }

    .video-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .video-icon img {
        width: 35px;
        height: 35px;
        transition: transform 0.3s ease;
    }

    .video-icon-container:hover .video-icon {
        transform: scale(1.08);
    }

    .video-icon-container:hover .video-icon img {
        transform: scale(1.1);
    }

    .video-icon-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        animation: pulse 1.5s infinite;
        transform: translate(-50%, -50%);
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.5;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0.2;
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.5;
        }
    }
    
    @media (min-width:968px){
        .about_container p{
            text-align:justify;
        }
    }