
  .tour-card:last-child {
    grid-column: span 2;
  }
  
  .tour-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    z-index: -1;
  }
  
  .tour-card:hover .tour-img {
    opacity: 0.8;
    transform: scale(1.1);
  }
  
  .tour-name {
    font-weight: 300;
  }
  
  .tour-action {
    margin-left: 20px;
    font-size: 14px;
    position: relative;
  }
  
  .tour-action::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 2px;
    background: url("img/pin.png");
    width: 15px;
    height: 15px;
    background-size: contain;
  }
  
  .services-section {
    color: #fff;
    padding: 80px 10vw;
  }
  
  .serives-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
  
  .service-card {
    margin-top: 100px;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    border: 1px solid #2d2d2d;
    background: #161813;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .card-icon {
    text-align: center;
    font-size: 60px;
    z-index: 1;
  }
  
  .service-text {
    text-align: center;
    padding: 0 20px;
    z-index: 1;
  }
  
  .circle {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 100% 100%);
    transition: .5s;
  }
  
  .service-card:nth-child(1) .circle {
    background: url(./img-1.png);
    object-fit: cover !important;
    background-repeat: no-repeat !important;
    background-size: cover;
  }
  
  .service-card:nth-child(2) .circle {
    background: url(./img-2.png);
    background-size: cover;
  }
  
  .service-card:nth-child(3) .circle {
    background: url(./img-3.png);
    background-size: cover;
  }
  .bok{
    width: 400px !important;
    height: 400px !important;
  }
  .service-card:nth-child(4) .circle {
    background: url(./img-4.jpg);
    background-size: cover;
  }
  
  .service-card:hover .circle {
    clip-path: circle(141.4% at 100% 100%);
  }
  
  .travel-grid {
    width: 100%;
    columns: 3;
    column-gap: 20px;
    margin-top: 200px;
  }
  
  .travel-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .bg-circle {
    z-index: -1;
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--sphere-gradient-one);
    right: -250px;
  }
  
  .book-section {
    position: relative;
    display: flex;
    padding: 0 10vw;
    align-items: center;
    width: 100%;
    height: 100vh;
    gap: 30px;
  }
  
  .book-now-img {
    position: absolute;
    width: 50%;
    right: 0;
  }
  
  .book-content {
    width: 50%;
    color: #fff;
  }
  
  .book-now-title {
    font-size: 50px;
    font-weight: 300;
    width: 300px;
  }
  
  .book-now-text {
    width: 300px;
    opacity: 0.5;
    line-height: 25px;
    margin: 30px 0;
  }
  
  .book-now {
    position: relative;
    padding: 10px 20px;
    outline: none;
    border: none;
    background: #000;
    text-transform: capitalize;
    color: #fff;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .book-now::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -30px;
    width: 20px;
    height: 200%;
    background: #fff;
    opacity: 0.2;
    transform: rotate(5deg);
    transition: .5s;
  }
  
  .book-now:hover::before {
    left: 100%;
  }
  
  .bg-circle-2 {
    z-index: -1;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--sphere-gradient-two);
    left: -125px;
    bottom: -100px;
  }
  
  .copyright-line {
    width: 100%;
    background: #000;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
  }
  
  @media screen and (max-width: 996px) {
    .link-item {
      margin: 0 10px;
    }
  
    .hero-section-title {
      font-size: 60px;
    }
  
    .tours-container {
      height: 900px;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
  
    .tour-card:last-child {
      grid-column: span 1;
    }
  
    .tour-card:nth-child(3) {
      grid-row: span 2;
    }
  
    .serives-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
      margin-top: 0;
    }
  
    .travel-grid {
      columns: 2;
    }
  
    .book-now-img {
      width: 40%;
    }
  
    .footer-logo {
      width: 70px;
    }
  
    .footer-text {
      font-size: 16px;
    }
  }
  
  /* much smaller device */
  
  @media screen and (max-width: 798px) {
    .navbar {
      height: auto;
    }
  
    .link-item {
      margin-top: 80px;
      text-align: center;
    }
  
    .link-item:nth-child(3) {
      margin: -50px -30px 0 -30px;
    }
  
    .link-item a {
      padding: 10px;
      margin: auto;
      display: block;
    }
  
    .section-title {
      font-size: 50px;
    }
  
    .grid-slider {
      grid-template-rows: repeat(3, 1fr);
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-section-sub-heading {
      font-size: 16px;
    }
  
    .section-para {
      width: 100%;
    }
  
    .tours-container {
      height: 1200px;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(6, 1fr);
    }
  
    .tour-card:nth-child(2) {
      grid-row: auto;
    }
  
    .tour-card:last-child {
      grid-column: span 1;
    }
  
    .tour-card:nth-child(3) {
      grid-row: span 1;
    }
  
    .serives-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .service-card:nth-child(2) {
      margin-top: 0;
    }
  
    .travel-grid {
      columns: 1;
    }
  
    .book-section {
      height: auto;
      padding: 80px 10vw;
    }
  
    .bg-circle {
      display: none;
    }
  
    .bg-circle-2 {
      z-index: 2;
    }
  
    .book-now-img {
      width: 100%;
      opacity: 0.3 !important;
    }
  
    .book-content {
      width: 100%;
      z-index: 2;
      text-align: center;
    }
  
    .book-now-title,
    .book-now-text {
      width: 100%;
    }
  }
  
  