@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;

  transition: all .2s linear; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem; }
  html::-webkit-scrollbar {
    width: 1rem; }
  html::-webkit-scrollbar-track {
    background: #111; }
  html::-webkit-scrollbar-thumb {
    background: #29D9D5;
    border-radius: 5rem; }

body {
  background: #fff;
  overflow-x: hidden; }

section {
  padding: 3rem 9%; }

.heading {
  text-align: center;
  margin-bottom: 2rem; }
  .heading span {
    color: rgb(18, 96, 204);
    font-weight: bold;
    font-size: 25px; }
    .heading h1 {
      font-size: 4rem;
      color: #1260cc; }

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 12px;
  text-align:center;
  font-weight: bold;
  color: #1260cc;
  border: 0.2rem solid #1260cc;
  border-radius: 5rem;
  cursor: pointer;
  background: #fff }
  .btn:hover {
    background: #122e35;
    color: #fff;  }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background:rgb(18, 96, 204);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 9%; }
.header .navbar a {
  font-size: 14px;
  font-weight: bolder;
  color: rgb(255, 255, 255);
  display: inline-block;
  margin: 0px 1rem;
  position: relative;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  perspective: 1000px;
}

.header .navbar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(138, 236, 255);
  transform-origin: bottom center;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-style: preserve-3d;
}

.header .navbar a:hover {
  color: rgb(138, 236, 255);/* Change to the desired hover color */
  transform: rotateX(20deg);
}

.header .navbar a:hover::after {
  transform: scaleX(1) rotateX(0);
}

.logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder; }
  .logo i {
    color: #29D9D5;
    padding-right: .5rem; }

#menu-btn {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  display: none;}

.home {
  margin: 0 auto;
  margin-top: 7rem;
  width: 100%;
  background: url(../images/d6.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5rem; }
  .home .content {
    text-align: center; }
    .home .content span {
      font-weight: bolder;
      color: transparent;
      -webkit-text-stroke: 0.1rem #fff;
      font-size: 4vw;
      display: block; }
    .home .content h3 {
      font-size: 6vw;
      color: #fff; }
    .home .content p {
      max-width: 100%;
      margin: 1rem auto;
      font-size: 1.6rem;
      color: #fff;
      line-height: 2;  }

.book-form {
  width: 80%;
  margin: 1rem auto;
  margin-top: -5rem;
  background: #222;
  border-radius: 1rem;
  box-shadow: 0, 0.5rem 1rem rgba(17, 17, 17, 0.3);
  padding: 3rem 2rem; }
  .book-form form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem; }
    .book-form form .inputBox {
      flex: 1 1 25rem; }
      .book-form form .inputBox span {
        font-size: 1.4rem;
        color: #aaa; }
      .book-form form .inputBox input {
        width: 100%;
        padding: 1.2rem 1.4rem;
        border-radius: 5rem;
        border: 0.2rem solid #29D9D5;
        font-size: 1.6rem;
        color: #aaa;
        text-transform: none;
        background: none;
        margin-top: 1rem; }
    .book-form form .btn {
      flex: 1 1 15rem; }

      .about {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem; }
        .about .video-container {
          flex: 1 1 42rem; }
          .about .video-container video {
            border-radius: 1rem;
            width: 100%; }
          .about .video-container .controls {
            text-align: center;
            padding: 2rem 0; }
            .about .video-container .controls span {
              display: inline-block;
              height: 2rem;
              width: 2rem;
              border-radius: 50%;
              background: #1260CC;
              cursor: pointer;
              margin: .7rem; }
              .about .video-container .controls span:hover {
                background: #02fffb; }
        .about .content {
          flex: 1 1 42rem;
          margin-bottom: 5rem; }
          .about .content span {
            color: #29D9D5;
            font-size: 2rem; }
          .about .content h3 {
            color: #1260cc;
            font-size: 4rem;
            margin-top: .5rem; }
          .about .content p {
            padding: 1rem 0;
            font-size: 1.4rem;
            color: #000;
            line-height: 2; }
            

.destination .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem; }
  .destination .box-container .box {
    text-align: center;
    flex-grow: 1;
    padding: 2rem;
    background: rgb(138, 236, 255); }
    .destination .box-container .box:hover img {
      transform: scale(1.1); }
    .destination .box-container .box .image {
      height: 20rem;
      overflow: hidden;
      width: 100%; }
      .destination .box-container .box .image img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
    .destination .box-container .box .content {
      padding: 2rem;
      text-align: center; }
      .destination .box-container .box .content h3 {
        font-size: 15px;
    color: rgb(18, 96, 204); }
      .destination .box-container .box .content p {
        font-size: 12px;
    text-align: justify;
    color: rgb(0, 0, 0);
    line-height: 2;
    padding: 1rem 0px; }
      .destination .box-container .box .content a {
        font-size: 1.7rem;
        color: #29D9D5; }
        .destination .box-container .box .content a:hover i {
          padding-left: 1rem; }
        .destination .box-container .box .content a i {
          padding-right: .5rem; }

          .services .box-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
            gap: 1.5rem; }
            .services .box-container .box {
              background: #8aecff;
              border-radius: 1rem;
              padding: 3rem;
              text-align: center;
              border: 0.2rem solid #111; }
              .services .box-container .box:hover {
                border: 0.2rem solid #29D9D5; }
              .services .box-container .box i {
                font-size: 4rem;
                color: #000;
                margin-bottom: 2rem; }
              .services .box-container .box h3 {
                font-size: 2rem;
                color: #1260cc; }
              .services .box-container .box p {
                padding: 1rem 0;
                font-size: 1.4rem;
                color: #000;
                line-height: 2; }

.gallery .box-container {
  columns: 3 25rem;
  column-gap: 1.5rem; }
  .gallery .box-container .box {
    margin-bottom: 1rem;
    break-inside: avoid; }
    .gallery .box-container .box img {
      width: 100%;
      border-radius: 1rem;
      margin-bottom: 1rem; }
    .gallery .box-container .box span {
      font-size: 1.4rem;
      color: #aaa; }
    .gallery .box-container .box h3 {
      margin-top: .5rem;
      font-size: 2rem;
      color: #fff; }

.review {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem; }
  .review .content {
    flex: 1 1 42rem; }
    .review .content span {
      font-size: 25px;
      font-weight: bold;
      color: #1260cc; }
    .review .content h3 {
      font-size: 3rem;
      color: #000; }
    .review .content p {
      font-size: 1.4rem;
      color: #000;
      padding: 1rem 0;
      line-height: 2; }
  .review .box-container {
    flex: 1 1 42rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; }
    .review .box-container .box {
      flex: 1 1 20rem;
      border-radius: 1rem;
      padding: 2rem;
      background: #b1f2ff;
      border: 0.2rem solid #111; }
      .review .box-container .box:hover {
        border: 0.2rem solid #29D9D5; }
      .review .box-container .box p {
        font-size: 12px;
        padding-bottom: 1rem;
        line-height: 2;
        color: #000; }
      .review .box-container .box .user {
        display: flex;
        align-items: center;
        gap: 1rem; }
        .review .box-container .box .user img {
          height: 5rem;
          width: 5rem;
          border-radius: 50%; }
        .review .box-container .box .user h3 {
          font-size: 1.7rem;
          color: #000; }
        .review .box-container .box .user span {
          color: #000;
          font-size: 1.5rem; }

          .blogs .box-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
            gap: 1.5rem; }
            .blogs .box-container .box {
              border-radius: 1rem;
              background: #b1f2ff;
              overflow: hidden; }
              .blogs .box-container .box:hover .image img {
                transform: scale(1.1); }
              .blogs .box-container .box .image {
                height: 25rem;
                overflow: hidden;
                width: 100%; }
                .blogs .box-container .box .image img {
                  height: 100%;
                  width: 100%;
                  object-fit: cover; }
              .blogs .box-container .box .content {
                padding: 2rem; }
                .blogs .box-container .box .content .link {
                  font-size: 15px;
                  font-weight: bold;
                  color: #000; }
                  .blogs .box-container .box .content .link:hover {
                    color: #29D9D5; }
                .blogs .box-container .box .content p {
                  padding: 1rem 0;
                  font-size: 12px;
                  color: #000;
                  line-height: 2; }
                .blogs .box-container .box .content .icon {
                  padding-top: 1rem;
                  display: flex;
                  align-items: center;
                  justify-content: space-between; }
                  .blogs .box-container .box .content .icon a {
                    font-size: 1.4rem;
                    color: #000; }
                    .blogs .box-container .box .content .icon a:hover {
                      color: #000; }
                    .blogs .box-container .box .content .icon a i {
                      padding-right: .5rem;
                      color: #000; }
                      .banner {
                        background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/ban1.jpg) no-repeat;
                        background-size: cover;
                        background-position: center;
                        padding: 3rem 2rem;
                        background-attachment: fixed;
                        text-align: center; }
                        .banner .content span {
                          font-size: 2rem;
                          color: #29D9D5; }
                        .banner .content h3 {
                          font-size: 4rem;
                          color: #fff;
                          margin-top: 1rem; }
                        .banner .content p {
                          max-width: 60rem;
                          margin: 1rem auto;
                          font-size: 1.4rem;
                          color: #aaa;
                          line-height: 2; }

                          .footer .box-container {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
                            gap: 1.5rem; }
                            .footer .box-container .box {
                              padding: 1rem 0; }
                              .footer .box-container .box .logo {
                                padding-bottom: 1rem; }
                              .footer .box-container .box h3 {
                                font-size: 15px;
                                font-weight: bold;
                                color: #1260cc;
                                padding: 1rem 0; }
                              .footer .box-container .box p {
                                font-size: 12px;
                                color: #1260cc;
                                font-weight: bolder;
                                padding: 1rem 0;
                                line-height: 2; }
                                .footer .box-container .box p i {
                                  padding-right: .5rem;
                                  color: #1260cc; }
                              .footer .box-container .box .share {
                                padding-top: 1rem; }
                                .footer .box-container .box .share a {
                                  height: 4.5rem;
                                  width: 4.5rem;
                                  line-height: 4rem;
                                  font-size: 1.7rem;
                                  border-radius: 50%;
                                  border: 0.2rem solid #000;
                                  color: #1260cc;
                                  margin-right: .5rem;
                                  text-align: center; }
                                  .footer .box-container .box .share a:hover {
                                    background:#1260cc;
                                    color: #fff; }
                              .footer .box-container .box .links {
                                font-size: 1.4rem;
                                color: #000;
                                padding: 1rem 0;
                                display: block; }
                                .footer .box-container .box .links:hover {
                                  color: #000; }
                                  .footer .box-container .box .links:hover i {
                                    padding-right: 2rem; }
                                .footer .box-container .box .links i {
                                  padding-right: .5rem;
                                  color: #000; }
                              .footer .box-container .box form .email {
                                width: 100%;
                                border-radius: 5rem;
                                border: 0.2rem solid #1260cc;
                                background: none;
                                font-size: 1.5rem;
                                text-transform: none;
                                color: #000;
                                margin-bottom: 1rem;
                                padding: 0.5rem 1.1rem; }
                                .credit {
                                  background: #1260CC;
                                  text-align: center;
                                  font-size: 15px;
                                  font-weight: bold;
                                  padding: 1rem 1rem;
                                  color: #fff; }
                                  .credit span {
                                    color: #fff; 
                                  font-weight: bold;}

@media (max-width: 991px) {
  html {
    font-size: 55%; }
  .header {
    padding: 1.5rem 2rem; }
  section {
    padding: 3rem 2%; } }

@media (max-width: 460px) {
  #menu-btn {
    display: inline-block; }
  .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #222;
        height: 420px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      }
     .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      }
     .header .navbar a {
        margin: 2rem;
        font-size: 2rem;
        display: block;
      }



}





@media (max-width: 450px) {
  html {
    font-size: 50%; }
  .about .content h3 {
    font-size: 3.5rem; }
  .banner .content h3 {
    font-size: 2.7rem; } }
