
.intro-form{
    text-align: center;
    background: #fff;
    padding: 43px 40px;
    border-radius: 2px;
}
.linkWhite{
color:white;
text-decoration:none;
}


 /* This is the magic for horizontal scrolling */
        .horizontal-scroll-wrapper {
            overflow-x: auto; /* Enable horizontal scrolling */
            padding-bottom: 1rem; /* Add space for the scrollbar (if visible) */
        }
        
        /* Optional: Hide the scrollbar for a cleaner look */
        .horizontal-scroll-wrapper::-webkit-scrollbar {
            display: none; /* Hide scrollbar for WebKit browsers */
        }
        .horizontal-scroll-wrapper {
            -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
            scrollbar-width: none;  /* Hide scrollbar for Firefox */
        }

        /* * Set a min-width on the columns to prevent them from
         * becoming too small on mobile. We use .col-10 on mobile
         * to show a "peek" of the next card, encouraging scrolling.
        */
        .horizontal-scroll-wrapper .col-10 {
            min-width: 80%; /* Ensure mobile columns are wide */
        }
        
        @media (min-width: 576px) { /* sm breakpoint */
            .horizontal-scroll-wrapper .col-sm-6 {
                min-width: 300px; /* Give a more fixed width on larger screens */
            }
        }
        
        @media (min-width: 768px) { /* md breakpoint */
            .horizontal-scroll-wrapper .col-md-4 {
                min-width: 320px;
            }
        }
        
        @media (min-width: 992px) { /* lg breakpoint */
            .horizontal-scroll-wrapper .col-lg-3 {
                min-width: 300px;
            }
        }

        /* Card styling from your image */
        .card {
            border: none; /* Remove default card border */
        }
        
        .card .card-title {
            font-weight: 700; /* Bolder title */
        }

        .card .card-body .text-uppercase {
            font-size: 0.75rem; /* Smaller "DESTINATION" text */
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem; /* Tighter spacing */
        }
        
        /* Custom purple horizontal line */
        .destination-hr {
            border: 0;
            height: 2px;
            width: 40px; /* Fixed width */
            background-color: #8a2be2; /* A purple color */
            opacity: 0.75;
            margin-top: 0.5rem;
            margin-bottom: 1rem;
        }
        
        /* Custom purple arrow icon */
        .destination-arrow {
            color: #8a2be2;
            font-size: 1.5rem;
            text-decoration: none;
        }
        
        .destination-arrow:hover {
            color: #6a1dae; /* Darker purple on hover */
        }
        
        /* Style for the new scroll buttons */
        .scroll-btn {
            border-radius: 50%; /* Make them circular */
            width: 40px;
            height: 40px;
            line-height: 40px; /* Center icon vertically */
            padding: 0;
        }
		
		
		.cardsuppliers
		{
		margin-bottom: 15px;
    color: rgba(91, 96, 107, 1);
    line-height: 1.1;
    letter-spacing: 0em;
    font-size: 22px;
    text-align: left;
    font-family: 'Nanum Myeongjo';
    font-weight: 700;
    font-style: normal;
		}
		
		
		.col-lg-3.col-md-4.col-sm-6.col-6 {
  margin-bottom: 30px;
}



/* --- For the <i> tag inside the <a> link --- */
.destination-arrow .bi::before,
.destination-arrow [class*=" bi-"]::before,
.destination-arrow [class^=bi-]::before {
  font-size: 40px;
  /* !important is generally not needed if your selector is specific enough */
}

/* --- For the <i> tag inside the <button> --- */
.scroll-btn .bi::before,
.scroll-btn [class*=" bi-"]::before,
.scroll-btn [class^=bi-]::before {
  font-size: 20px;
}


		
  /* --- Hero Section Wrapper --- */
  .hero-vacations {
    /* Set the background image and a dark purple overlay */
    background: linear-gradient(rgba(58, 26, 76, 0.85), rgba(58, 26, 76, 0.85)),
      url("/images/travel-agency-near-me-background-2.jpg");
    background-size: cover;
    background-position: center center;
    padding: 5rem 0;
    color: #fff;
  }

  /* --- Top Content (Text & Icons) --- */
  .hero-vacations h1 {
    /* Style for the main "Exquisite Vacations" heading */
    font-family: "Georgia", serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .hero-vacations .intro-text p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
  }

  .hero-vacations .intro-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
  }

  /* Styles for the 4-icon feature grid */
  .feature-item {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .feature-item i {
    /* Bootstrap Icon styling */
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
  }

  .feature-item span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* --- Bottom Content (Cards) --- */

  /* Common card styles */
  .hero-vacations .card {
    border: none;
    border-radius: 0;
    height: 100%; /* Ensures all cards are the same height */
  }

  /* Specific styles for the Expert cards (Holly & Leah) */
  .expert-card {
    text-align: center;
    background-color: #fff;
    color: #212529; /* Dark text for the white card */
  }

  .expert-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 0;
  }

  .expert-card .profile-pic {
    /* This creates the overlapping circle */
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: -60px; /* Pulls the image up */
    border: 5px solid white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    position: relative; /* Sits on top of the card body */
    z-index: 2;
  }

  .expert-card .card-body {
    padding-top: 1rem;
  }

  .expert-card .card-title {
    font-family: "Georgia", serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  /* Specific styles for the "Find the Right Expert" card */
  .cta-card {
    background-color: #2a2a2a; /* Dark background from image */
    color: #fff;
    /* Flex utilities to center the content perfectly */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .cta-card h3 {
    font-family: "Georgia", serif;
    font-weight: 700;
    font-size: 1.75rem;
  }

  /* The "GET STARTED" link with top/bottom borders */
  .cta-link {
        display: inline-block;
    color: black;
    text-decoration: none;
    padding: 0.6rem 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    background: transparent;
  }

  .cta-link:hover {
    color: #eee;
    border-color: #eee;
  }
