
.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);
  }
 .hero-description{
                            color: White !important;
                            font-weight: 300 !important;
                        }
  .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("826625021-img_6617.jpeg");
    width: 15px;
    height: 15px;
    background-size: contain;
  }
  
  .services-section {
    color: #fff;
    padding: 100px 10vw;
    position: relative;
    background: linear-gradient(135deg, 
      rgba(135, 206, 235, 0.1) 0%, 
      rgba(144, 238, 144, 0.1) 40%, 
      rgba(255, 182, 193, 0.1) 80%, 
      rgba(255, 255, 255, 0.05) 100%);
    overflow: hidden;
    min-height: 600px;
  }

  .services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
      rgba(135, 206, 235, 0.15) 0%, 
      rgba(144, 238, 144, 0.1) 30%, 
      transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
  }

  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .services-section .section-title {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #87CEEB, #90EE90, #FFB6C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(144, 238, 144, 0.3);
    letter-spacing: 2px;
  }

  .center-title {
    text-align: center !important;
  }
  
  .serives-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .service-card {
    margin-top: 0;
    width: 100%;
    height: 350px;
    border-radius: 25px;
    border: 2px solid rgba(144, 238, 144, 0.5);
    background: linear-gradient(135deg, 
      rgba(20, 20, 25, 0.95) 0%, 
      rgba(15, 15, 20, 0.9) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 5px 15px rgba(135, 206, 235, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

  .service-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .service-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .service-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .service-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
      transparent 30%, 
      rgba(135, 206, 235, 0.25) 50%, 
      transparent 70%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
  }

  .service-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(144, 238, 144, 0.8);
    box-shadow: 0 20px 60px rgba(135, 206, 235, 0.5),
                0 10px 30px rgba(144, 238, 144, 0.4),
                0 0 50px rgba(255, 182, 193, 0.3),
                inset 0 0 30px rgba(135, 206, 235, 0.1);
  }

  .service-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }
  
  .card-icon {
    text-align: center;
    font-size: 60px;
    z-index: 2;
    color: #90EE90;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(144, 238, 144, 0.5));
  }

  .service-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: #87CEEB;
    filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.8));
  }
  
  .service-text {
    text-align: center;
    padding: 15px 25px;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF !important;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    background: rgba(15, 15, 20, 0.95);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(144, 238, 144, 0.4);
  }

  .service-card:hover .service-text {
    color: #FFFFFF;
    transform: translateY(-5px);
    text-shadow: 0 2px 15px rgba(135, 206, 235, 0.6),
                 0 0 20px rgba(135, 206, 235, 0.4);
    background: rgba(20, 20, 25, 0.98);
    border-color: rgba(135, 206, 235, 0.6);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  
  .circle {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.1);
  }
  
  .service-card:nth-child(1) .circle {
    background: url("./826625021-img_6617.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
  }
  
  .service-card:nth-child(2) .circle {
    background: url("826624025-img_6618.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
  }
  
  .service-card:nth-child(3) .circle {
    background: url("826623604-img_6245-1.JPG");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
  }
  
  .service-card:nth-child(4) .circle {
    background: url("826623369-img_6250-1.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
  }
  
  .service-card:hover .circle {
    clip-path: circle(150% at 50% 50%);
    opacity: 0.95;
    filter: brightness(1.2) contrast(1.15) saturate(1.1);
  }

  .service-card:nth-child(1):hover {
    border-color: rgba(135, 206, 235, 0.8);
  }

  .service-card:nth-child(2):hover {
    border-color: rgba(144, 238, 144, 0.8);
  }

  .service-card:nth-child(3):hover {
    border-color: rgba(255, 182, 193, 0.8);
  }

  .service-card:nth-child(4):hover {
    border-color: rgba(135, 206, 235, 0.8);
  }
  
  .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: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, 
      rgba(135, 206, 235, 0.3) 0%, 
      rgba(144, 238, 144, 0.25) 40%, 
      rgba(255, 182, 193, 0.2) 70%, 
      transparent 100%);
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes pulse {
    0%, 100% {
      transform: translateY(-50%) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-50%) scale(1.1);
      opacity: 0.8;
    }
  }
  
  .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);
      grid-gap: 25px;
    }
  
    .service-card {
      height: 300px;
    }

    .service-card:nth-child(3),
    .service-card:nth-child(4) {
      margin-top: 0;
    }

    .services-section {
      padding: 80px 5vw;
    }

    .services-section .section-title {
      margin-bottom: 50px;
    }
  
    .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);
      grid-gap: 25px;
    }
  
    .service-card {
      height: 280px;
    }

    .service-card:nth-child(2) {
      margin-top: 0;
    }

    .services-section {
      padding: 60px 5vw;
      min-height: auto;
    }

    .services-section .section-title {
      margin-bottom: 40px;
      font-size: clamp(2rem, 8vw, 3rem);
    }

    .bg-circle {
      width: 400px;
      height: 400px;
      right: -200px;
      filter: blur(30px);
    }
  
    .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%;
    }
  }
  
  