  :root {

    /* Font Families */
    --font-family-base: "Open Sans", sans-serif;

    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-semi: 600;
    --font-weight-bold: 700;

    /* Responsive Headings using clamp() with px */
    --heading-h1: clamp(32px, 4vw + 10px, 56px);
    --heading-h2: clamp(28px, 3vw + 8px, 44px);
    --heading-h3: clamp(24px, 2.5vw + 6px, 36px);
    --heading-h4: clamp(20px, 2vw + 4px, 28px);
    --heading-h5: clamp(18px, 1.5vw + 3px, 24px);
    --heading-h6: clamp(16px, 1vw + 2px, 20px);

    --heading-line-height: 1.2;


    /* Colors */
    --color-primary: #ff6c0a;
    --color-primary-hover: #ff9142;
    --color-text-light: #e5e5e5;
    --color-text-dark: #333;
    --color-overlay-bg: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-family-base: "Open Sans", sans-serif;
    --font-weight-bold: 700;
    --font-weight-semi: 600;

    /* Border Radius */
    --radius-button: 25px;
    --radius-card: 20px;
    --radius-image: 12px;

    /* Box Shadows */
    --box-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.15);
    --box-shadow-arrow: 0 2px 6px rgba(255, 108, 10, 0.5);

    --padding-top-medium: 80px;
    --padding-bottom-medium: 80px;
  }

  body,
  html {
    height: 100%;
    margin: 0;
    font-family: var(--font-family-base);
    font-optical-sizing: auto;
  }

  h1 {
    font-size: var(--heading-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  h2 {
    font-size: var(--heading-h2);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  h3 {
    font-size: var(--heading-h3);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  h4 {
    font-size: var(--heading-h4);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  h5 {
    font-size: var(--heading-h5);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  h6 {
    font-size: var(--heading-h6);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  /* Utility heading classes to override heading tags */
  .h1 {
    font-size: var(--heading-h1);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  .h2 {
    font-size: var(--heading-h2);
    font-weight: var(--font-weight-bold);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  .h3 {
    font-size: var(--heading-h3);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  .h4 {
    font-size: var(--heading-h4);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  .h5 {
    font-size: var(--heading-h5);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  .h6 {
    font-size: var(--heading-h6);
    font-weight: var(--font-weight-semi);
    line-height: var(--heading-line-height);
    font-family: "DM Sans", sans-serif;
  }

  a {
    color: rgb(0 0 0);
    text-decoration: none;
  }

  /* Padding Utility Classes */
  .padding-top-large {
    padding-top: var(--space-xxl, 180px);
  }

  .padding-bottom-large {
    padding-bottom: var(--space-xxl, 180px);
  }

  .padding-top-medium {
    padding-top: var(--padding-top-medium);
  }

  .padding-bottom-medium {
    padding-bottom: var(--padding-top-medium);
  }

  .padding-top-small {
    padding-bottom: var(--space-md, 64px);
  }

  .padding-bottom-small {
    padding-bottom: var(--space-md, 64px);
  }

  /* Optional: Add a subtle background blur when fixed */
  .navbar.fixed-top {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }

  /* Optional scroll effect — make navbar slightly darker on scroll */
  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 0.4rem 1rem;
  }

  .scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 0%);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }

  .use-ful-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .bg-image {
    background-image: url('https://images.pexels.com/photos/30802053/pexels-photo-30802053.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    color: white;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .container-custom {
    position: relative;
    z-index: 2;
    padding: 3rem 1rem;
  }

  .navbar-brand {
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
  }

  .navbar-nav .nav-link.active {
    color: #ffc107 !important;
    /* bright yellow or your brand color */
    font-weight: 600;
    position: relative;
  }

  .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #ffc107;
    border-radius: 2px;
  }

  .btn-contact.active {
    background-color: #ffc107 !important;
    color: #000 !important;
    border-color: #ffc107 !important;
    transition: 0.3s ease;
  }


  .btn-contact {
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
  }

  .btn-contact:hover {
    background-color: #ffa84b;
  }

  .highlight {
    color: #ffa84b;
  }

  .btn-submit {
    background-image: linear-gradient(to right, #b16cea, #ff5e69 51%, #ffa84b);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    width: 100%;
    transition: 0.3s ease;
  }

  .btn-submit:hover {
    opacity: 0.9;
  }

  @media (min-width: 768px) {
    main {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 3rem;
    }

    .left-content {
      flex: 1;
    }

    .right-content {
      flex: 1;
      background-color: #fff;
      color: #000;
      border-radius: 12px;
      padding: 2rem;
    }
  }


  /* Slider container */
  #popular-destination .splide__slide {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  /* #popular-destination .splide__slide:hover {
      transform: scale(1.05);
      z-index: 10;
    } */

  /* Image styling */
  #popular-destination .splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  /* Destination text */
  #popular-destination .destination-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
  }

  /* Customize arrows */
  #popular-destination .splide__arrow {
    background-image: linear-gradient(to right, #b16cea, #ff5e69 51%, #ffa84b);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 20px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 2px 6px rgba(255, 108, 10, 0.5);
    z-index: 1;
  }

  #popular-destination .splide__arrow:hover {
    background: #ff9142;
  }

  .splide__arrow svg {
    fill: #fff;
  }

  /* #popular-destination .splide__arrow--prev {
      left: -50px;
    }
    #popular-destination .splide__arrow--next {
      right: -50px;
    } */

  /* Stat */

  .about-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .about-text {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3rem;
  }

  .stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    transition: background 0.3s;
  }

  .stat-card:hover {
    background: #ededed;
  }

  .stat-icon {
    font-size: 2rem;
    color: #ff6c0a;
    flex-shrink: 0;
  }

  .stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    color: #000;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #000;
    margin-top: 0.15rem;
  }

  .stats {
    background: linear-gradient(to right, #b16cea, #ff5e69 51%, #ffa84b);
    color: white;

  }

  /* video */
  .video-container {
    position: relative;
    height: 450px;
    max-width: 100%;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.7);
  }

  .video-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 40px;
    filter: brightness(0.9);
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff6c0a, #ffa043);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 108, 10, 0.6);
    transition: background 0.3s ease;
  }

  .play-button:hover {
    background: linear-gradient(135deg, #ffa043, #ff6c0a);
    box-shadow: 0 6px 20px rgba(255, 108, 10, 0.8);
  }

  .play-button i {
    color: white;
    font-size: 28px;
    margin-left: 3px;
    /* Adjust for the triangle shape */
  }

  /* Modal iframe responsiveness */
  .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
  }

  .modal-body {
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
  }

  .modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* filter */

  .filter-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 8px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
    border: none;
    transition: all 0.3s ease;
    background: #484848;
    color: #bbb;
  }

  .filter-btn.active {
    background: linear-gradient(to right, #b16cea, #ff5e69 51%, #ffa84b);
    color: white;
    box-shadow: 0 4px 12px rgb(255 108 10 / 0.6);
  }

  .offer-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid darkgrey;
  }

  .offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #cf67b9;

  }

  .offer-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 108, 10, 1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgb(255 108 10 / 0.7);
  }

  .offer-info {
    background: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    color: #111;
    padding: 14px 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
  }

  .offer-info .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
  }

  .offer-info .price {
    font-weight: 700;
    color: #ff6c0a;
  }

  .filter-section {
    padding: 40px 20px;
  }

  /* client */

  #testimonial-slider .section-title {
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
    margin: 50px 0 30px;
  }

  #testimonial-slider .splide__slide {
    display: flex;
    justify-content: center;
  }

  #testimonial-slider .profile-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  #testimonial-slider .profile-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid white;
  }

  #testimonial-slider .profile-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
  }

  #testimonial-slider .splide__pagination {
    bottom: -25px;
  }

  #testimonial-slider .splide__pagination__page.is-active {
    background: white;
  }

  .testimonial-section {
    background: linear-gradient(to right, #b16cea, #ff5e69 51%, #ffa84b);
    color: white;
  }

  /* contact form */

  .right-content .form-control {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    font-size: 14px;
  }

  .form-section {
    padding: 40px;
    background-color: #fff;
    color: #000;
  }

  .contact-section {
    padding: 40px;
    background-color: #000;
  }

  .form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: #000;
  }

  .form-label {
    font-weight: 500;
    font-size: 14px;
  }

  .submit-btn {
    border-radius: 30px;
    padding: 6px 24px;
    font-size: 14px;
  }

  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    transition: all 0.3s;
  }

  .social-icons a:hover {
    background-color: #000;
    color: #fff;
  }

  @media (max-width: 768px) {

    .form-section,
    .contact-section {
      padding: 20px;
    }

    .video-container {
      height: auto;
    }

    .use-ful-links {
      display: block !important;
    }
  }

  /* footer */

  footer {
    background: #000;
    color: white;
    padding: 60px 0px 0px;
  }

  .footer-logo {
    font-weight: 700;
    font-size: 24px;
    color: white;
  }

  .footer-logo span {
    color: #ff6c0a;
  }

  .footer-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .footer-links a {
    display: block;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
  }

  .footer-links a:hover {
    color: #ff6c0a;
  }

  .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #333;
    color: white;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: background 0.3s ease;
  }

  .social-icons a:hover {
    background: #ff6c0a;
  }

  .footer-bottom {
    background: #111;
    color: #999;
    font-size: 13px;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
  }

  @media (max-width: 992px) {
    .navbar-nav .nav-link.active::after {
      display: none;
    }
  }

  @media (max-width: 767px) {

    .footer-links,
    .social-icons {
      margin-top: 20px;
    }
  }

  @media (max-width: 576px) {
    .stat-card {
      align-items: center;
      flex-direction: column;
      /* gap: 1rem; */
      min-width: auto;
    }
  }