  
  .slider_body_div {
    height: 80vh;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  h2.holiday-title {
    font-size: 34px;
    color: rgb(253 177 6);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.content {
    backdrop-filter: blur(3px) blur(1px);
    padding: 20px 20px 30px 30px;
    border-radius: 20px;
    background-color: #0000007a;
}

button.holiday-slider-but {
    padding: 13px 36px;
    border-radius: 50px;
    border: none;
    background-color: #174285;
    color: #fff;
    font-size: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s;
}

.content:hover button.holiday-slider-but:hover {
    background-color: #fdb106;
    transition: 0.5s;
    transform: scale(1.04);
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


  
  .slider_main_div {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }

  .content {
    width: 46%;
  }
  
  .item {
    margin: 0px !important;
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
  
    &:nth-child(1), &:nth-child(2) {
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      transform: none;
      border-radius: 0;
      box-shadow: none;
      opacity: 1;
    }
  
    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 220px); }
    &:nth-child(5) { left: calc(50% + 440px); }
    &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    font: 400 0.85rem helvetica,sans-serif;
    color: white;
    opacity: 0;
    display: none;
  }
  
    & .description {
    line-height: 1.5;
    margin: 1rem 0 1.5rem;
    font-size: 16px;
    }
  }
  
  .item .content {
    opacity: 0;
    display: none;
  }

  .item.active .content {
    display: block;
    animation: show 0.75s ease-in-out 0.3s forwards;
  }

  
  @keyframes show {
    0% {
      filter: blur(5px);
      transform: translateY(calc(-50% + 75px));
    }
    100% {
      opacity: 1;
      filter: blur(0);
    }
  }
  
  .nav {
    position: absolute;
    bottom: 2rem;
    left: 42%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
  
    & .btn {
      background-color: rgb(23 66 133);
      color: rgb(255 255 255);
      border: 2px solid rgb(255 255 255);
      margin: 0 0.25rem;
      padding: 0.75rem;
      border-radius: 50%;
      cursor: pointer;
  
      &:hover {
        background-color: rgba(255,255,255,0.3);
      }
    }
  }


  /* Hero Section */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    background: #bdd7ff;
    padding: 0;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.surf-school-h3 {
    font-size: 1.7rem !important;
    margin-bottom: 10px;
    font-weight: 700 !important;
}

.surf-school-p {
    font-size: 1.1rem;
    color: #000000;
}

.card-bottom button {
    margin-top: 10px;
    padding: 8px 34px;
    border: 1px solid #444;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.card-bottom button:hover {
    background: #ffffff;
    color: #000000;
}

.cta {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cta h2 {
  font-size: 1.8rem;
}

.cta span {
    color: #fdb106;
}

.big-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.big-btn:hover {
  background: #000;
  color: #fff;
}

/* Tags Marquee */
.tags-wrapper {
  background: #eef1f7;
  padding: 10px 0;
}

.tags span {
    border-radius: 20px;
    font-size: 20px;
    margin: 0 70px;
}

/* Info Section */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

.map-box {
    background: #fdb106 url(../img/map1.png) no-repeat center bottom;
    border-radius: 20px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 30px;
    background-size: auto;
    background-repeat: no-repeat;
}

.map-content h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 34px;
    letter-spacing: 16px;
}

.map-content p {
    font-size: 22px;
}

.center, .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.community {
    background: #bdd7ff;
}

.image-box {
  padding: 0;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
}

.student-count h2 {
    font-size: 2.5rem;
    color: #174285;
}

.student-count p {
  font-size: 0.9rem;
  color: #444;
}

.mini-btn {
    margin-top: 10px;
    border: 1px solid #174285;
    padding: 5px 12px;
    background: #fff;
    border-radius: 20px;
    font-size: 1.4rem;
    cursor: pointer;
    color: #174285 !important;
    transition: 0.3s;
}

.mini-btn:hover {
    background: #125da2;
    color: #fff !important;
    transform: translateY(10px);
}


.card {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

/* Hidden overlay image */
.card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card .image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show image on hover */
.card:hover .image-overlay {
  opacity: 1;
}

/* Content should be above background */
.card .content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: white;
}

.card:hover {
    background-image: url(https://destbannerst.imgix.net/holidaytypes/holiday-types-homepage-banner.jpeg?w=1920&h=585&fm=jpg&auto=format&fit=crop);
    transition: all 0.3s !important;
    transform: scale(1.05);
    overflow: hidden;
}

.travel-deals-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

    .travel-card {
      position: relative;
      width: 100%;
      max-width: 360px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
       transition: all 0.7s;
    }

    .travel-card:hover {
      transform: translateY(-5px);
      transition: all 0.7s;
    }

    .travel-card:hover .travel-card-image {
        transform: scale(1.05);
        transition: all 0.7s;
    }

    .travel-card-image {
      background-image: url('../img/packages-1.jpg');
      background-size: cover;
      background-position: center;
      height: 220px;
      position: relative;
    }

    .travel-card-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #fdb106e8;
      color: white;
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
    }

    .travel-card-content {
      padding: 20px;
    }

    .travel-card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .travel-card-location {
      color: #666;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .travel-card-prices {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .price-block {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
    }

    .total-price {
        font-size: 20px;
        font-weight: bold;
        color: #174285;
        margin-top: 12px;
        text-align: right;
    }

    .travel-card a {
        text-decoration: none;
        color: #000;
    }



    /* Holiday Interest Slider */
    .holiday-interest-slider {
      position: relative;
      overflow: hidden;
      margin-bottom: 50px;
      max-width: 100%;
    }

    .holiday-interest-slider .slider-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .holiday-interest-slider .slider-item {
      flex: 0 0 calc((100% - 64px) / 5); /* 5 items with 16px gap */
      text-align: center;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .holiday-interest-slider .slider-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .cta-footer-div h2 {
        margin-bottom: 20px;
       font-size: 30px;
    }

    .cta-footer-div span {
        color: #fdb106e8;
    }

    .footer-slider-div-1 {
        margin-top: 50px;
    }

    .holiday-interest-slider .slider-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;

      /* 🔥 Hide scrollbar cross-browser */
      scrollbar-width: none;       /* Firefox */
      -ms-overflow-style: none;    /* IE 10+ */
    }
    .holiday-interest-slider .slider-track::-webkit-scrollbar {
      display: none;               /* Chrome/Safari */
    }

    .holiday-interest-slider .slider-item p {
      font-weight: bold;
      padding: 10px;
      font-size: 14px;
    }

    .holiday-interest-slider .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #174285;
      border: 1px solid #174285;
      border-radius: 50%;
      padding: 8px 10px;
      cursor: pointer;
      color: #fff;
      transition: 0.6s;
      z-index: 2;
  }

    .surf-camp {
      background-image: url(../img/offer1-img0.jpg);
  }

  .surf-school {
      background-image: url(../img/offer1-img1.jpg);
  }

    .holiday-interest-slider .arrow-btn:hover {
        background-color: #fdb106;
        color: #ffffff;
        border: 1px solid #fdb106;
        transition: 0.5s;
    }

    .holiday-interest-slider .arrow-left {
      left: 10px;
  }

    .holiday-interest-slider .arrow-right {
      right: 10px;
    }

    /* Top Destination Grid */
    .top-destination-section {
      margin-top: 40px;
    }

    .top-destination-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .top-destination-grid .destination-card {
      text-align: center;
    }

    .top-destination-grid .destination-card img {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      object-fit: cover;
      margin-bottom: 6px;
    }



    @media screen and (min-width: 768px) {
      .travel-card {
          flex: 1 1 calc(25% - 24px);
      }

    }

@media (max-width: 768px) {
  .hero,
  .info {
    grid-template-columns: 1fr;
  }
  .holiday-interest-slider .slider-item {
          flex: 0 0 calc((100% - 32px) / 3) !important;
      }

      ul.slider h4 {
    font-size: 12px;
  }
}

  
  @media (width > 650px) and (width < 900px) {
    .content {
      & .holiday-title        { font-size: 1rem; }
      & .description  { font-size: 0.7rem; }
      & button        { font-size: 0.7rem; }
    }
    .item {
      width: 160px;
      height: 270px;
  
      &:nth-child(3) { left: 50%; }
      &:nth-child(4) { left: calc(50% + 170px); }
      &:nth-child(5) { left: calc(50% + 340px); }
      &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
  }
  
  @media (width < 650px) {
    .content {
      & .holiday-title{ font-size: 18px;}
      & .description  { font-size: 0.65rem; }
      & button        { font-size: 0.7rem; }
    }
    .item {
      width: 130px;
      height: 220px;
  
      &:nth-child(3) { left: 50%; }
      &:nth-child(4) { left: calc(50% + 140px); }
      &:nth-child(5) { left: calc(50% + 280px); }
      &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }
  }

  /* ============ MOBILE RESPONSIVENESS ============ */
  
  /* Tablet to Mobile (768px and below) */
  @media (max-width: 768px) {
    .slider_body_div {
      height: auto;
      min-height: 60vh;
      padding: 20px 0;
    }

    .slider_main_div {
      height: 400px;
    }

    .content {
      width: 100%;
      padding: 15px 15px 20px 20px;
      border-radius: 15px;
    }

    h2.holiday-title {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .content {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      display: block !important;
      opacity: 1 !important;
    }

    button.holiday-slider-but {
      padding: 10px 25px;
      font-size: 14px;
    }

    .item {
      width: 150px;
      height: 250px;
      left: auto !important;
      transform: none !important;
      position: relative !important;
      margin: 0 10px !important;
      opacity: 1 !important;
      top: auto !important;
      display: inline-block;
    }

    .item:nth-child(3),
    .item:nth-child(4),
    .item:nth-child(5),
    .item:nth-child(6) {
      left: auto !important;
    }
  }

  /* Small phones (480px and below) */
  @media (max-width: 480px) {
    .slider_body_div {
      height: auto;
      min-height: 50vh;
      padding: 15px 0;
    }

    .slider_main_div {
      height: 300px;
    }

    .content {
      width: 100%;
      padding: 12px 12px 16px 15px;
    }

    h2.holiday-title {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .content .description {
      font-size: 11px;
      line-height: 1.4;
    }

    /* MOBILE - REDUCE SLIDER HEIGHT AND WHITESPACE */
    .slider_body_div {
      height: auto !important;
      min-height: auto !important;
      padding: 15px 10px !important;
    }

    button.holiday-slider-but {
      padding: 8px 18px;
      font-size: 12px;
    }

    .item {
      width: 120px;
      height: 200px;
      margin: 0 8px !important;
    }

    /* Reduce card heights on mobile */
    .card {
      min-height: auto !important;
      max-height: 350px;
    }

    /* Reduce hero padding */
    .hero {
      padding: 10px 10px !important;
      gap: 10px !important;
    }

    /* Reduce info section padding */
    .info {
      padding: 10px 10px !important;
      gap: 10px !important;
    }

    /* Reduce nav positioning on mobile */
    .nav {
      bottom: 1rem !important;
      left: auto !important;
      transform: none !important;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    /* MOBILE SLIDER - SHOW IT PROPERLY */
    .slider_body_div {
      height: auto !important;
      min-height: auto !important;
      padding: 15px 10px !important;
      display: block !important;
    }

    /* Show slider items on mobile */
    .slider {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      display: flex !important;
      flex-direction: column !important;
      list-style: none !important;
    }

    /* Mobile slider items - show all in stack */
    .item {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      transform: none !important;
      top: auto !important;
      left: auto !important;
      z-index: 0 !important;
      display: block !important;
      margin: 0 0 15px 0 !important;
      border-radius: 12px !important;
      background-size: cover !important;
      background-position: center !important;
      min-height: 250px !important;
    }

    /* Nth-child reset for mobile */
    .item:nth-child(1),
    .item:nth-child(2),
    .item:nth-child(3),
    .item:nth-child(4),
    .item:nth-child(5),
    .item:nth-child(6) {
      position: static !important;
      left: auto !important;
      top: auto !important;
      width: 100% !important;
      height: auto !important;
      min-height: 250px !important;
      transform: none !important;
      border-radius: 12px !important;
      display: block !important;
      opacity: 1 !important;
      z-index: auto !important;
    }

    /* Mobile content positioning */
    .item .content {
      position: static !important;
      transform: none !important;
      top: auto !important;
      left: auto !important;
      width: 100% !important;
      display: block !important;
      opacity: 1 !important;
      padding: 15px 15px !important;
    }

    /* Show second item content on mobile */
    .item:nth-of-type(2) .content {
      display: block !important;
      animation: none !important;
      opacity: 1 !important;
    }

    /* Responsive text on mobile */
    .content .title {
      font-size: 18px !important;
      margin: 0 0 8px 0 !important;
    }

    .content .subtitle {
      font-size: 12px !important;
      margin: 5px 0 !important;
    }

    .content .description {
      font-size: 13px !important;
      line-height: 1.4 !important;
      margin: 8px 0 !important;
    }

    /* Mobile nav buttons */
    .nav {
      position: static !important;
      transform: none !important;
      width: 100% !important;
      display: flex !important;
      justify-content: center !important;
      gap: 10px !important;
      margin-top: 10px !important;
      bottom: auto !important;
      left: auto !important;
    }

    .nav .btn {
      padding: 8px 12px !important;
      font-size: 16px !important;
    }

    /* Primary button on mobile */
    .primary-button {
      font-size: 12px !important;
      padding: 8px 16px !important;
      margin-top: 10px !important;
    }

    /* Reduce content padding */
    .content {
      padding: 10px 10px 15px !important;
    }

    /* Reduce card-content padding */
    .card-content {
      padding: 10px !important;
    }

    /* Reduce map-box padding */
    .map-box {
      padding: 15px !important;
    }

    /* Reduce cta padding */
    .cta {
      padding: 15px !important;
    }

    /* Reduce tags wrapper */
    .tags span {
      margin: 0 10px !important;
      font-size: 14px !important;
    }

    /* Reduce box padding */
    .box {
      padding: 10px !important;
    }

    /* Adjust video container if present */
    iframe {
      max-width: 100%;
      height: auto;
    }
  }