@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");

:root {
  --primary-color: #3685fb;
  --primary-color-dark: #2f73d9;
  --secondary-color: #fafcff;
  --text-dark: #0d213f;
  --text-light: #767268;
  --extra-light: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

#scrollUpButton {
  display: none; /* Hide the button by default */
  position: fixed; /* Position the button */
  bottom: 20px;
  right: 20px;
  z-index: 99; /* Set a high z-index to ensure it's above other elements */
  width: 40px;
  height: 40px;
  background-color: #5c5ade;
  color: #fff;
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}

#scrollUpButton:hover {
  background-color: #ff9904;
  border: 1px solid #fff;
}

.section__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__title__abt {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__title__abt__sec {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1rem;
  color: #000;
  max-width: calc(var(--max-width) / 2);
}

.section__subtitle__abt {
  font-size: 1rem;
  color: #000;
  max-width: calc(var(--max-width) / 2);
}

.section__subtitle__head {
  font-size: 1rem;
  color: #fff;
  max-width: calc(var(--max-width) / 2);
  text-align: justify;
}

.section__subtitle-sec {
  font-size: 1rem;
  color: #05223c;
}

.btn {
  padding: 0.5rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--extra-light);
  background-color: #05223c;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-nav {
  padding: 0.5rem 2rem;
  outline: none;
  border: none;
  font-size: 12px;
  color: var(--extra-light);
  background-color: #05223c;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  border: 2px solid #f7d04f;
}

.btn:hover {
  background-color: #f7d04f;
  color: #05223c;
}
.btn-nav:hover {
  background-color: #f7d04f;
  color: #05223c;
}

.btn-sec {
  padding: 0.5rem 2rem;
  outline: none;
  border: 1px solid #f5cb41;
  font-size: 1rem;
  color: #05223c;
  background-color: #f5cb41;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-sec:hover {
  background-color: rgb(111, 109, 238);
  color: #fff;
  border: 1px solid #f7d04f;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

.nav__logo {
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__logo span {
  color: var(--primary-color);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
}

.link a {
  padding: 0 1rem;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
}

.link a:hover {
  color: #adc7de;
}

header {
  background: linear-gradient(#05223c, rgb(111, 109, 238));
}

.header__container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.header__image {
  position: relative;
}

.header__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2rem;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.header__image img:nth-child(1) {
  max-width: 1000px;
  transform: translate(-50%, -45%);
}

.header__image img:nth-child(2) {
  max-width: 500px;
  transform: translate(0%, -25%);
}

.header__content {
  display: flex;
  align-items: center;
}

.header__content > div {
  max-width: 400px;
  display: grid;
  gap: 2rem;
  margin-left: 2rem;
}

.header__content .sub__header {
  font-size: 1rem;
  font-weight: 600;
  color: #f5d002;
}

.header__content h1 {
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 800;
  color: #d3dbe1;
  font-family: "Poppins", sans-serif;
}

.header__content #typing-text {
  overflow: hidden;
  border-right: 0.15em;
  white-space: nowrap;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
}

/* Define the fade-in animation using keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Apply the animation to the h1 element */
.header__content h1 {
  animation: fadeIn 1.5s ease-in-out;
}

.header__content .action__btns {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.story {
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
}

.video__image {
  position: relative;
}

.video__image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.video__image span {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.video__image span i {
  padding: 0.5rem;
  font-size: 1rem;
  color: red;
  background-color: var(--extra-light);
  border-radius: 100%;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.story > span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.destination__nav {
  display: flex;
  gap: 1rem;
}

.destination__nav span {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.destination__nav span:hover {
  color: var(--extra-light);
  background-color: var(--primary-color);
}

.wrapper__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.wrapper__card {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.wrapper__card:hover {
  transform: scale(1.1);
}

.wrapper__card .tit {
  color: #c0c0c0;
  font-weight: 600;
}

.wrapper__card .tit-gold {
  color: #ffd700;
  font-weight: 600;
}

.wrapper__card img {
  border-radius: 1rem;
}

.wrapper__details {
  position: absolute;
  width: calc(100% - 2rem);
  padding: 1rem;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--extra-light);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  z-index: 1;
  transition: 0.3s;
}

.wrapper__card:hover .wrapper__details {
  bottom: 1rem;
}

.wrapper__title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.wrapper__subtitle {
  font-size: 1rem;
  font-weight: 600;
}

.claim {
  background-color: var(--secondary-color);
}

.claim__container :is(.section__title, .section__subtitle, .view__all) {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.claim__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.claim__card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.claim__details {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--extra-light);
}

.show-less-button {
  display: none;
}
.claim__grid .claim__card:nth-child(n + 7) {
  display: none;
}

.view__all {
  text-align: center;
  margin-top: 1rem; /* You can adjust the margin as needed */
}

.view__all button {
  display: inline-block;
}

.rating {
  color: #05223c;
  font-size: 14px;
  text-align: justify;
  font-weight: normal;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loc span {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.book__now {
  padding: 0.5rem 1.5rem;
  color: var(--primary-color);
  outline: none;
  border: 1px solid var(--primary-color);
  border-radius: 5rem;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.book__now:hover {
  color: var(--extra-light);
  background-color: var(--primary-color);
}

.gallary__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.image__gallary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallary__col {
  display: grid;
  place-content: center;
  gap: 1rem;
}

.gallary__col img {
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.gallary__content {
  display: flex;
  margin-left: 2rem;
  justify-content: center;
  flex-direction: column;
}

.gallary__content .see__more {
  margin-top: 1rem;
}

.gallary__content .see__more a {
  color: #2f73d9;
}

.gallary__content .see__more a:hover {
  color: #2f8de0;
}

.gallary__content > div {
  max-width: 400px;
}

.gallary__content .section__subtitle {
  margin-bottom: 3rem;
}

.gallary__content .section__subtitle-sec {
  margin-top: 0.5rem;
}

.check {
  background-color: var(--secondary-color);
}

.check__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.check__form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.check__form form {
  width: 100%;
  max-width: 400px;
  display: flex;
  background-color: var(--extra-light);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5rem;
}

.check__form input {
  width: 100%;
  padding: 1rem;
  outline: none;
  border: none;
  border-radius: 5rem;
  font-size: 1rem;
}

.footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  color: var(--secondary-color);
}

.footer__col h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__col h3 span {
  color: var(--primary-color);
}

.footer__col p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.footer__col p:hover {
  color: var(--primary-color);
}

.footer__col p span {
  font-weight: 600;
}

.footer__col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__col .social-links a {
  margin-left: 0.5rem;
  padding: 0.5rem;
}
.footer__col .social-links a:hover {
  color: yellow;
}

.footer__col .social-links a i {
  color: #fff;
  font-size: 18px;
}

.footer__col .social-links a i:hover {
  color: #f7d04f;
}

.footer__col__sec {
  margin-top: 1.5rem;
  margin-left: 2rem;
}

.footer__col__sec h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__col__sec h3 span {
  color: var(--primary-color);
}

.footer__col__sec p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.footer__col__sec p:hover {
  color: var(--primary-color);
}

.footer__col__sec p span {
  font-weight: 600;
}

.footer__col__sec h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__bar {
  max-width: var(--max-width);
  margin: auto;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--secondary-color);
  border-top: 1px solid var(--text-light);
}

@media screen and (max-width: 970px) {
  .nav__links {
    display: none;
    position: relative; /* Add this line */
    z-index: 1; /* Add this line */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }

  .hamburger-menu {
    display: block;
    cursor: pointer;
    z-index: 2; /* Add this line */
  }

  .hamburger-menu div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
  }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 1rem;
    top: 75px;
    left: 0;
    background: linear-gradient(#05223c, rgb(111, 109, 238));
    width: 92%;
    height: 930px;
    margin-left: 1rem;
    z-index: 1;
    border: 1px solid #fff;
    border-radius: 1rem;
  }

  .nav__links.active .link {
    width: 100%;
    margin: 0rem 0rem 1rem 0rem;
  }

  .nav__links.active .btn-nav {
    width: 100%;
    border: none;
  }

  .link a:hover {
    border-bottom: none;
  }
}

@media (width < 1200px) {
  .nav__links {
    gap: 0.5rem;
  }

  .link a {
    padding: 15px;
    color: #fff;
    transition: 0.3s;
  }

  .header__image img:nth-child(1) {
    max-width: 590px;
  }

  .header__image img:nth-child(2) {
    max-width: 200px;
  }
}

@media (width < 1150px) {
  .nav__links {
    gap: 0.1rem;
  }
  .link a {
    padding: 10px;
    color: #fff;
    transition: 0.3s;
  }
}

@media (width < 1100px) {
  .link a {
    padding: 8px;
    color: #fff;
    transition: 0.3s;
  }
}

@media (width < 1030px) {
  .link a {
    padding: 3px;
    color: #fff;
    transition: 0.3s;
  }
}

@media (width < 900px) {
  .nav__links {
    display: none;
  }

  .header__image img:nth-child(1) {
    max-width: 590px;
    z-index: 2;
  }

  .header__image img:nth-child(2) {
    max-width: 200px;
    z-index: 2;
  }

  .header__container {
    grid-template-columns: repeat(1, 1fr);
  }
  .header__image {
    min-height: 500px;
    z-index: 2;
  }

  .wrapper__grid {
    gap: 1rem;
  }

  .claim__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallary__content > div {
    max-width: 530px;
    text-align: justify;
  }
  .section__title__abt__sec {
    font-size: 1.2rem;
  }

  .nav__links.active .link a {
    font-size: 12px;
  }

  .nav__links.active .link a:hover {
    color: #f5cb41;
  }
}

@media (width < 900px) {
  .section__title__abt__sec {
    font-size: 1rem;
  }
}

@media (width < 700px) {
  .wrapper__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 600px) {
  .wrapper__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .claim__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallary__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .check__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (width < 500px) {
  .footer__col {
    text-align: justify;
    margin-left: 1rem;
  }

  .branches {
    text-align: justify;
  }

  .branches .footer__col__sec {
    margin-left: 1rem;
  }

  .header__content > div {
    text-align: justify;
    margin-left: 0.5rem;
  }
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .gallary__content {
    margin-left: 0.5rem;
  }

  .nav__links.active .link a:hover {
    color: #f5cb41;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .navbar .navbar-brand-wrapper {
    padding-left: 0.5rem;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .navbar .navbar-brand-wrapper {
    padding-left: 0.5rem;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .navbar .navbar-brand-wrapper {
    padding-left: 2.5rem;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .navbar .navbar-brand-wrapper {
    padding-left: 2.5rem;
  }
}

/* Document CSS */

.container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

.container .content {
  padding: 0.5rem;
  width: 100%;
}

.container .content .images {
  width: 100%;
}

.container .content .images .image-uno {
  border: solid 1px #cecece;
  padding: 1rem;
  width: 100%;
}

.container .content .images .image-uno img {
  border: solid 1px #cecece;
  width: 100%;
}
