.header-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

/*.custom-container{
    width: 1100px !important;
}*/
.custom-breadcrumb {
    background: transparent;
    padding: 0;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #ff8b3c;
    text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #cfcfcf;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #777;
}

.main-heading {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
}

.header-description {
    color: #d0d0d0;
    font-size: 16px;
    max-width: 1000px;
}

.travel-from {
    font-size: 20px;
    font-weight: 500;
}

.select-city {
    color: #ff8b3c;
    cursor: pointer;
    margin-left: 8px;
}

.select-city:hover {
    text-decoration: underline;
}

.arrow {
    font-size: 14px;
    margin-left: 4px;
}



.travel-card {
    background-color: #1c1c1c;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    height: 100%;
}

.travel-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.travel-card h5{
    color: #fff;
}
.badge-number {
    background-color: #ff8b3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 14px;
    margin-right: 8px;
}

.subtitle {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 12px;
}

.description {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
}

.card-footer {
    border-top: 1px solid #333;
    padding: 15px 20px;
    background: transparent;
    display: flex;
    gap: 12px;
}

.btn-outline-custom {
    border: 1px solid #ff8b3c;
    color: #fff;
    border-radius: 12px;
    padding: 8px 18px;
}

.btn-outline-custom:hover {
    background-color: #6ea8fe;
    color: #000;
}

.btn-primary-custom {
    background-color: #ff8b3c;
    color: #fff;
    border-radius: 12px;
    padding: 8px 22px;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #4d8dff;
}

/*===modal popup =====*/

.city-modal {
    background-color: #1f1f1f;
    color: #fff;
    border-radius: 18px;
    padding: 20px;
}

.modal-title {
    font-size: 36px;
    font-weight: 600;
}

.section-title {
    color: #b0b0b0;
    margin-bottom: 25px;
}

.city-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid transparent;
    transition: 0.3s;
}

/* Initialize counter on ordered list */
.destination-list {
  list-style: none;
  padding-left: 0;
  counter-reset: destination-counter;
}

/* Increment counter on each list item */
.destination-list > li {
  counter-increment: destination-counter;
}

/* Inject number into badge */
.badge-number::before {
  content: counter(destination-counter);
}

.city-item:hover img {
    border-color: #0d6efd;
}

.city-item h6 {
    margin: 0;
    font-weight: 500;
}

.city-item span {
    font-size: 14px;
    color: #aaa;
}

.city-list div {
    margin-bottom: 14px;
    cursor: pointer;
}

.city-list strong {
    font-weight: 500;
}

.city-list span {
    color: #9a9a9a;
    font-size: 14px;
}


/* LOCATION CTA CARD */
.location-card {
    background: linear-gradient(180deg, #232323, #1a1a1a);
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
    position: relative;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 25px;
}

.image-grid img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.location-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 60px auto 15px;
    position: absolute;
    left: 0px;
    right: 0px;
}

.location-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
}

.choose-city-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ff8b3c;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 500;
}

.choose-city-btn:hover {
    background-color: #6ea8fe;
}


/* SECTION */
.outside-india-section {
  background-color: #f8f9fb;
}

/* TITLE */
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}

/* SLIDER WRAPPER */
.destination-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  list-style: none;
  padding-left: 0;
  counter-reset: slide-counter;
}

/* HIDE SCROLLBAR */
.destination-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.destination-card {
  min-width: 220px;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  counter-increment: slide-counter;
}

.destination-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 12px;
}

/* NUMBER BADGE */
.slide-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.slide-badge::before {
  content: counter(slide-counter);
}

/* TITLE */
.destination-card h5 {
  margin-top: 10px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* NAV BUTTONS */
.slider-controls {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background-color: #e9ecef;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.tourist-scrolldestination{
    padding: 10px 0px 40px !important;
}
.nav-btn.active {
  opacity: 1;
  background-color: #dee2e6;
}

.nav-btn:not(.active) {
  cursor: not-allowed;
}




