.dubai-deal {
  text-align: left;
}

.dubai-deal h2 p {
  margin-left: 50px; /* Default: mobile view */
}

@media (min-width: 768px) {
  .dubai-deal h2 {
    margin-left: 0; /* On tablet and up, no margin */
  }
}
  .carousel-container {
    max-width: 90%;
    margin: 0 auto;
    background-color: white;
    padding: 0;
  }

  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    background-color: white;
  }

  #cardCarousel {
    display: flex;
    gap: 10px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .card {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 250px;
    max-width: 250px;
    border: 1px solid black;
    background-color: white;
    position: relative;
  }

  .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .card-body {
    padding: 10px;
  }

  .card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin: 0 0 5px;
  }

  .card-body p {
    margin-bottom: 5px;
    font-weight: bold;
  }

  /* Navigation arrows */
  #prevBtn, #nextBtn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background-color: black;
    color: white;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  #prevBtn {
    left: 0;
  }

  #nextBtn {
    right: 0;
  }

  .carousel-wrapper:hover #prevBtn,
  .carousel-wrapper:hover #nextBtn {
    opacity: 1;
    pointer-events: auto;
  }
  @media (max-width: 768px) {
    .cruise-card-wrapper {
      flex-direction: column !important;
    }
    .cruise-card {
      flex: 1 1 100% !important;
      max-width: 100% !important;
    }
  }    @media (min-width: 1024px) {  
        h3 {
            margin-left: 18px;
            font-size: 20px; /* Sirf laptop screens par margin-left apply hoga */
        }
    }

    @media (max-width: 767px) { 
        h3 {
            margin-left: 15px !important;
            font-size: 32px !important;
            font-weight: 400 !important; /* Desktop jaisa same font-weight */
        }
    } /* Intro Section */
  .intro-wrapper {
    margin-left: 40px;
    text-align: left;
    max-width: 700px;
  }
  .intro-text {
    text-align: justify;
    color: black;
  }
  @media (max-width: 768px) {
    .intro-wrapper {
      margin-left: 20px;
    }
  }

  html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Grid Container */
  .restaurant-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 260px;
    gap: 10px;
    width: 95%;
    margin: 0 auto;
  }

  /* Card Style */
  .restaurant-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0 !important;
    overflow: hidden;
    color: white;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    z-index: 0;
  }

  .restaurant-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
  }

  .restaurant-card h2 {
    position: relative;
    z-index: 2;
    margin: 0;
  }

  .col-span-2 {
    grid-column: span 2;
  }

  /* Mobile View */
  @media (max-width: 768px) {
    .restaurant-grid {
      display: flex !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 10px !important;
      padding-bottom: 10px;
    }

    .restaurant-card {
      flex: 0 0 calc(60% - 10px) !important;
      min-width: calc(60% - 10px);
      height: 260px !important;
      scroll-snap-align: start !important;
    }
  }