﻿:root {
  --primary-color            : #FF0000;
  --primary-dark             : #d30000;
  --primary-light            : #df3d3d;
  --text-dark                : #333;
  --text-black               : #000;
  --text-light               : #666;
  --border-color             : #e0e0e0;
  --bg-light                 : #f8f9fa;
  --white-color              : #fff;
  /* hero banner main title */
  --hero-title-font-size     : 60px;
  --hero-title-font-weight   : var(--fw-bold);
  --hero-title-letter-spacing: 1px;
  --hero-title-line-heigh    : 1;
  /* hero banner tagline  */
  --fs-hero-tagline          : 22px;
  --fw-light-tagline         : 300;
  --hero-tagline-opacity     : 0.95;
  /* all seciton main title */
  --fs-section-title         : clamp(26px, 4vw, 38px);
  --fw-bold                  : 700;
  --ls-section-title         : 0.5px;
  --tt-capitalize            : capitalize;
  --mb-section-title         : clamp(12px, 1vw, 18px);
  /* all seciton child title */
  --fs-section-subtitle      : clamp(20px, 2vw, 28px);
  --fw-regular               : 500;
  --subtitle-color           : #3e4246;
  --mb-section-subtitle      : clamp(16px, 2.5vw, 20px);

  /* Desktop Font Sizes */
  --fs-section-desc: clamp(14px, 1.2vw, 16px);
  --fs-medium-desc : clamp(13px, 1.1vw, 15px);
  --fs-small-desc  : clamp(12px, 1vw, 14px);

  /* Font Weights */
  --fw-regular: 400;

  /* Line Heights */
  --lh-large : 1.8;
  --lh-medium: 1.7;
  --lh-small : 1.6;
  --radius-xs: 4px;
  --radius-sm: 8px;

  --d-flex         : flex;
  --align-center   : center;
  --justify-between: space-between;
  --d-block        : block;

  --fw-semibold         : 600;
  --position-relative   : relative;
  --text-decoration-none: none;
}

* {
  box-sizing: border-box;
  margin    : 0;
  padding   : 0;
}

h3 {
  font-size     : var(--fs-section-title);
  font-weight   : var(--fw-bold);
  text-transform: var(--tt-capitalize);
  letter-spacing: var(--ls-section-title);
  margin-bottom : var(--mb-section-title);
}

h4 {
  font-size    : var(--fs-section-subtitle);
  font-weight  : var(--fw-regular);
  color        : var(--subtitle-color);
  margin-bottom: var(--mb-section-subtitle);
}

.section-description {
  font-size  : var(--fs-section-desc);
  font-weight: var(--fw-regular);
  line-height: var(--lh-large);
  color      : var(--text-dark);

}

.medium-description {
  font-size  : var(--fs-medium-desc);
  font-weight: var(--fw-regular);
  line-height: var(--lh-medium);
}

.small-description {
  font-size  : var(--fs-small-desc);
  font-weight: var(--fw-regular);
  line-height: var(--lh-small);
}

.text-white {
  color: var(--white-color);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a:focus,
a:hover {
  text-decoration: var(--text-decoration-none);
  outline: 1px solid transparent !important;
}

.my-50 {
  margin-top   : 50px;
  margin-bottom: 50px;
}

/* Tablet */
@media (max-width: 991px) {
  .my-50 {
    margin-top   : 30px;
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .my-50 {
    margin-top   : 20px;
    margin-bottom: 20px;
  }
}

/* ---------- Desktop Navbar ---------- */
.new-navbar-wrapper {
  background: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position  : var(--position-relative);
  z-index   : 1000;
}

.new-navbar-container {
  max-width: 1400px;
  margin   : 0 auto;
  padding  : 0 20px;
}

.new-navbar-main {
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: var(--justify-between);
  min-height     : 80px;
}

.new-navbar-logo img {
  height: 60px;
}

.new-navbar-menu {
  display        : var(--d-flex);
  align-items    : var(--align-center);
  list-style     : none;
  margin         : 0;
  padding        : 0;
  flex-grow      : 1;
  justify-content: center;
}

.new-navbar-item {
  position: var(--position-relative);
}

.new-navbar-link {
  display        : var(--d-block);
  padding        : 28px 15px;
  color          : var(--text-dark);
  text-decoration: var(--text-decoration-none);
  font-size      : var(--fs-section-desc);
  font-weight    : var(--fw-regular);
  transition     : color 0.3s;
  white-space    : nowrap;
}

.new-navbar-link:hover {
  color: var(--primary-color);
}

.new-navbar-link i {
  margin-left: 5px;
  font-size  : 12px;
  transition : transform 0.3s;
}

.new-navbar-item:hover .new-navbar-link i {
  transform: rotate(180deg);
}

.new-navbar-btn {
  background     : var(--primary-color);
  color          : var(--white-color);
  padding        : 12px 30px;
  border         : none;
  border-radius  : 4px;
  font-size      : var(--fs-section-desc);
  font-weight    : var(--fw-semibold);
  text-decoration: var(--text-decoration-none);
  transition     : 0.3s;
  margin-top     : 15px;
}

.new-navbar-btn:hover {
  background: var(--primary-dark);
  color     : var(--white-color);
}

/* ---------- Dropdown ---------- */
.new-navbar-dropdown {
  position     : absolute;
  top          : 100%;
  left         : 0;
  background   : var(--white-color);
  min-width    : 200px;
  box-shadow   : 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity      : 0;
  visibility   : hidden;
  transform    : translateY(-10px);
  transition   : all 0.3s;
  border-radius: 4px;
  overflow     : hidden;
}

.new-navbar-item:hover .new-navbar-dropdown {
  opacity   : 1;
  visibility: visible;
  transform : translateY(0);
}

.new-navbar-dropdown-link {
  display        : var(--d-block);
  padding        : 12px 20px;
  color          : var(--text-dark);
  text-decoration: var(--text-decoration-none);
  font-size      : 15px;
}

.new-navbar-dropdown-link:hover {
  background     : rgba(0, 0, 0, 0.05);
  color          : var(--primary-color);
  font-weight    : var(--fw-semibold);
  text-decoration: var(--text-decoration-none);
}

/* ---------- Mega Menu ---------- */

.new-navbar-megamenu {
  position       : absolute;
  top            : 100%;
  left           : 50%;
  transform      : translateX(-50%) translateY(-10px);
  background     : var(--white-color);
  box-shadow     : 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity        : 0;
  visibility     : hidden;
  transition     : all 0.3s;
  border-radius  : 4px;
  min-width      : 1200px;
  max-width      : 1100px;
  max-height     : 500px;
  overflow-y     : auto;
  overflow-x     : hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--bg-light);
}

.new-navbar-megamenu::-webkit-scrollbar {
  width: 6px;
}

.new-navbar-megamenu::-webkit-scrollbar-thumb {
  background-color: var(--text-light);
  border-radius   : 3px;
}

.new-navbar-megamenu::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.new-navbar-item:hover .new-navbar-megamenu {
  opacity   : 1;
  visibility: visible;
  transform : translateX(-50%) translateY(0);
}

.new-navbar-megamenu-content {
  display    : var(--d-flex);
  flex-wrap  : wrap;
  gap        : 25px;
  padding    : 20px;
  align-items: flex-start;
}

@media (max-width: 768px) {

  .new-navbar-megamenu {
    position     : static;
    transform    : none;
    min-width    : 100%;
    max-width    : 100%;
    width        : 100%;
    box-shadow   : none;
    border-radius: 0;
    max-height   : none;
    display      : none;
    opacity      : 1;
    visibility   : visible;
  }

  /* open class for mobile */
  .new-navbar-item.active .new-navbar-megamenu {
    display: var(--d-block);
  }

  .new-navbar-megamenu-content {
    flex-direction: column;
    padding       : 10px 15px;
  }

  .new-navbar-megamenu-column {
    width        : 100%;
    margin-bottom: 15px;
  }

  .new-navbar-megamenu-title {
    font-size    : var(--fs-section-desc);
    margin-bottom: 8px;
  }

  .new-navbar-megamenu a {
    display: var(--d-block);
    padding: 8px 0;
  }

  .new-navbar-item:hover .new-navbar-megamenu {
    transform: none;
  }

  .new-navbar-megamenu-content {
    gap: 0;
  }

  .new-navbar-megamenu-column {
    margin : 0;
    padding: 0 !important;
  }

}

.new-navbar-megamenu-title a {
  text-decoration: var(--text-decoration-none);
  color          : var(--text-black);
  font-weight    : var(--fw-bold);
  font-size      : var(--fs-section-desc);
  display        : inline-block;
  margin-bottom  : 0.5rem;
  transition     : color 0.3s;
}

.new-navbar-megamenu-title a:hover {
  color: var(--primary-color);
}

.new-navbar-megamenu-column a {
  display        : var(--d-block);
  color          : var(--text-light);
  margin         : 2px 0;
  text-decoration: var(--text-decoration-none);
  position       : var(--position-relative);
  padding        : 3px 6px;
  border-radius  : 4px;
  transition     : all 0.3s ease;
}

.new-navbar-megamenu-column a:hover {
  background : rgba(0, 0, 0, 0.05);
  color      : var(--primary-color);
  font-weight: var(--fw-semibold);
}

.browse-all {
  font-weight: var(--fw-semibold);
  color      : var(--primary-color);
  margin-top : 0.5rem;
}

.new-navbar-megamenu-column {
  flex   : 0 0 220px;
  padding: 0 20px;
}

.new-navbar-megamenu-title {
  font-size     : var(--fs-section-desc);
  font-weight   : var(--fw-bold);
  color         : var(--text-dark);
  margin-bottom : 20px;
  padding-bottom: 10px;
  border-bottom : 2px solid var(--primary-color);
}

.new-navbar-megamenu-link {
  display        : var(--d-block);
  padding        : 8px 0;
  color          : var(--text-light);
  text-decoration: var(--text-decoration-none);
  font-size      : var(--fs-small-desc);
}

.new-navbar-megamenu-link:hover {
  color       : var(--primary-color);
  padding-left: 10px;
}

/* <!-- ---------- Start Destination Drop down ----------  --> */
.new-navbar-megamenu-title {
  cursor         : pointer;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: var(--justify-between);
  font-weight    : var(--fw-semibold);
  margin-bottom  : 8px;
  transition     : color 0.3s ease;
}

.new-navbar-megamenu-title .icon-link {
  text-decoration: var(--text-decoration-none);
  margin-right   : 8px;
}

.new-navbar-megamenu-title i {
  color    : var(--primary-color);
  font-size: var(--fs-section-desc);
}

.new-navbar-megamenu-title .title-text {
  flex: 1;
}

.new-navbar-megamenu-title::after {
  content    : "\f107";
  font-family: FontAwesome;
  transition : transform 0.3s ease;
  margin-left: 8px;
}

.new-navbar-megamenu-column a:not(.browse-all) {
  display: none;
}

.new-navbar-megamenu-column .new-navbar-megamenu-title a:not(.browse-all) {
  display: var(--d-block);
  color  : var(--text-light);
}

.new-navbar-megamenu-column.active a:not(.browse-all) {
  display: var(--d-block);
}

.new-navbar-megamenu-column.active .new-navbar-megamenu-title::after {
  transform: rotate(180deg);
}

/* <!-- ---------- End Destination Drop down ----------  --> */

/* ---------- Mobile Navbar ---------- */
.new-navbar-toggle {
  display   : none;
  background: transparent;
  border    : none;
  color     : var(--text-dark);
  font-size : 24px;
  cursor    : pointer;
  padding   : 10px;
}

.new-navbar-mobile-header {
  display: none;
}

@media (max-width: 991px) {
  .new-navbar-toggle {
    display: var(--d-block);
  }

  .new-navbar-menu-wrapper {
    position  : fixed;
    top       : 0;
    left      : -100%;
    width     : 300px;
    height    : 100vh;
    background: var(--white-color);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index   : 9999;
  }

  .new-navbar-menu-wrapper.active {
    left: 0;
  }

  .new-navbar-overlay {
    position  : fixed;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity   : 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index   : 999;
  }

  .new-navbar-overlay.active {
    opacity   : 1;
    visibility: visible;
  }

  .new-navbar-mobile-header {
    display        : var(--d-flex);
    justify-content: var(--justify-between);
    align-items    : var(--align-center);
    padding        : 15px 20px;
    border-bottom  : 1px solid var(--text-light);
  }

  .new-navbar-mobile-header img {
    width: 50px;
  }

  .new-navbar-close {
    background: none;
    border    : none;
    font-size : 24px;
    color     : var(--text-dark);
    cursor    : pointer;
  }

  .new-navbar-menu {
    flex-direction: column;
    align-items   : stretch;
    padding       : 10px 15px;
  }

  .new-navbar-item {
    border-bottom: 1px solid var(--bg-light);
    margin       : 0;
  }

  .new-navbar-link {
    padding: 15px 20px;
  }

  .new-navbar-dropdown,
  .new-navbar-megamenu {
    position    : static;
    opacity     : 1;
    visibility  : visible;
    transform   : none;
    box-shadow  : none;
    display     : none;
    background  : var(--bg-light);
    padding-left: 20px;
  }

  .new-navbar-item.active .new-navbar-dropdown,
  .new-navbar-item.active .new-navbar-megamenu {
    display: var(--d-block);
  }

  .new-navbar-megamenu-content {
    flex-direction: column;
    padding       : 10px 0;
  }

  .new-navbar-megamenu-column {
    border : none;
    padding: 10px 0;
  }

  .new-navbar-cta {
    padding: 20px;
  }

  .new-navbar-btn {
    display   : var(--d-block);
    text-align: center;
    width     : 100%;
  }
}

/* ---------- Small devices ---------- */
@media (max-width: 767px) {
  .new-navbar-main {
    min-height: 70px;
  }

  .new-navbar-logo img {
    height: 55px;
  }
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .d-lg-block {
    display: none !important;
  }
}

.new-navbar-ctas {
  display: none;
}

@media (max-width: 1030px) {
  .new-navbar-ctas {
    display: var(--d-block);
  }
}

/* ---------- End Desktop Navbar ---------- */
/* ---------- Desktop hero section ---------- */
.country-card {
  max-width    : 100%;
  margin       : 0 auto;
  background   : var(--white-color);
  border-radius: var(--radius-sm);
  overflow     : hidden;
  box-shadow   : 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-hero {
  position           : var(--position-relative);
  height             : 400px;
  background         : linear-gradient(135deg, var(--text-black) 0%, #34495e 50%, #8b7d6b 100%);
  display            : var(--d-flex);
  padding            : 40px;
  overflow           : hidden;
  background-size    : cover;
  background-position: center;
  color              : var(--white-color);
  align-items        : flex-end;
  overflow           : hidden;
}

.country-hero::after {
  content : "";
  position: absolute;
  inset   : 0;
  background: linear-gradient(to top,
      rgb(0 0 0),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0));
  z-index: 0;
}

/* Make content appear above the overlay */
.country-hero-content {
  position: var(--position-relative);
  z-index : 1;
}

.country-hero::before {
  content   : "";
  position  : absolute;
  right     : -50px;
  top       : 50%;
  transform : translateY(-50%);
  width     : 300px;
  height    : 500px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M50,10 L50,200 M30,30 L70,30 L50,60 L70,60 M30,80 L70,80 M30,100 L70,100 M30,120 L70,120 M25,140 L75,140 M20,160 L80,160" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/><path d="M35,25 L65,25 M40,35 L60,35 M35,85 L65,85 M40,95 L60,95 M35,105 L65,105 M40,115 L60,115 M30,145 L70,145 M25,165 L75,165" stroke="rgba(255,255,255,0.05)" stroke-width="0.5" fill="none"/></svg>') center/contain no-repeat;
  opacity   : 1;
}

.country-hero-content {
  position: var(--position-relative);
  z-index : 2;
  display : var(--d-flex);
  color   : var(--white-color);
}

.country-code {
  font-size     : 48px;
  font-weight   : var(--fw-semibold);
  letter-spacing: 8px;
  margin-bottom : 10px;
  opacity       : 0.9;
  display       : var(--d-flex);
  align-items   : var(--align-center);
  color         : #d30000;
}

.country-name {
  font-size  : var(--hero-title-font-size);
  font-weight: var(--hero-title-font-weight);
  line-height: var(--hero-title-line-heigh);
  margin     : 0 0 10px 0;
  color      : var(--white-color);
}

.country-tagline {
  font-size  : var(--fs-hero-tagline);
  font-weight: var(--fw-light-tagline);
  opacity    : var(--hero-tagline-opacity);
  max-width  : 600px;
  color      : var(--white-color);
}

.country-info {
  padding   : 20px;
  background: var(--white-color);
}

.country-info-item {
  text-align: center;
  padding   : 0 10px;
  display   : var(--d-flex);
  gap       : 9px;
}

.breadcrumb {
  font-size       : var(--fs-small-desc);
  color           : var(--text-light);
  margin-bottom   : 10px;
  background-color: transparent;
  border          : none;
}

.breadcrumb a {
  color          : var(--primary-color);
  text-decoration: var(--text-decoration-none);
  position       : var(--position-relative);
  transition     : color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

.breadcrumb span {
  margin: 0 6px;
  color : var(--text-light);
}

.breadcrumb .active {
  color      : var(--white-color);
  font-weight: var(--fw-semibold);
}

.country-info-icon {
  font-size    : 25px;
  margin-bottom: 15px;
  color        : var(--primary-color);
}

.country-info-icon.location {
  color: var(--primary-color);
}

.country-info-icon.language {
  color: var(--primary-color);
}

.country-info-icon.currency {
  color: var(--primary-color);
}

.country-info-icon.time {
  color: var(--primary-color);
}

.country-info-icon.phone {
  color: var(--primary-color);
}

.country-info-icon.calendar {
  color: var(--primary-color);
}

.country-info-label {
  font-size     : var(--fs-small-desc);
  color         : var(--text-light);
  text-align    : start;
  letter-spacing: 1px;
  margin-bottom : 3px;
  font-weight   : var(--fw-semibold);
}

.country-info-value {
  font-size  : var(--fs-section-desc);
  color      : var(--text-black);
  font-weight: var(--fw-semibold);
  text-align : start;
}

@media (max-width: 991px) {
  .country-hero {
    height : 350px;
    padding: 30px;
  }

  .country-name {
    font-size: 56px;
  }

  .country-tagline {
    font-size: 18px;
  }

  .country-info-item {
    margin-bottom: 0px;
  }
}


@media (max-width: 767px) {
  .country-hero {
    height : 300px;
    padding: 20px;
  }

  .country-code {
    font-size: 36px;
  }

  .country-name {
    font-size: 42px;
  }

  .country-tagline {
    font-size: var(--fs-section-desc);
  }

  .country-info {
    padding: 30px 20px;
  }

  .country-info-item {
    padding: 15px 10px;
  }

  .country-info-icon {
    font-size: 30px;
  }

  .country-info-value {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .country-code {
    font-size     : 28px;
    letter-spacing: 4px;
  }

  .country-name {
    font-size: 36px;
  }

  .country-tagline {
    font-size: var(--fs-small-desc);
  }

  .country-info-icon {
    font-size    : 26px;
    margin-bottom: 10px;
  }

  .country-info-label {
    font-size: 12px;
  }

  .country-info-value {
    font-size: var(--fs-section-desc);
  }
}

/* ---------- End Desktop hero section ---------- */
/* ---------- End Desktop Explore Your Next Adventure ---------- */
.destinations-country-container {
  margin       : 0 auto;
  background   : transparent;
  border-radius: 20px;
}

.destinations-country-section-title {
  text-align   : center;
  font-size    : 2.3rem;
  color        : var(--text-dark);
  margin-bottom: 15px;
  font-weight  : var(--fw-bold);
}

.destinations-country-tabs {
  display        : var(--d-flex);
  justify-content: center;
  gap            : 20px;
  margin-bottom  : 15px;
  flex-wrap      : wrap;
}

.destinations-country-tab-btn {
  padding      : 12px 35px;
  font-size    : 1rem;
  border       : none;
  background   : #f2f2f2;
  color        : var(--text-light);
  border-radius: 50px;
  cursor       : pointer;
  transition   : all 0.3s ease;
  font-weight  : var(--fw-semibold);
}

.destinations-country-tab-btn:hover {
  background: var(--text-light);
}

.destinations-country-tab-btn.active {
  background: var(--primary-light);
  color     : var(--white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.destinations-country-tab-content {
  display: none;
}

.destinations-country-tab-content.active {
  display  : var(--d-block);
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from {
    opacity  : 0;
    transform: translateY(15px);
  }

  to {
    opacity  : 1;
    transform: translateY(0);
  }
}

.destinations-country-slider-container {
  position: var(--position-relative);
  /* keep padding so arrows sit outside the visible cards area */
  padding : 20px 50px;
}

/* Make the slider itself horizontally scrollable */
.destinations-country-slider {
  display                   : var(--d-flex);
  gap                       : 20px;
  overflow-x                : auto;
  scroll-behavior           : smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom            : 6px;
}

/* hide native scrollbar but keep scrolling */
.destinations-country-slider::-webkit-scrollbar {
  height: 8px;
}

.destinations-country-slider::-webkit-scrollbar-thumb {
  background   : rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
}

.destinations-country-slider {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

.destinations-country-card {
  flex         : 0 0 calc(29.333% - 20px);
  background   : white;
  border-radius: var(--radius-sm);
  overflow     : hidden;
  box-shadow   : 0 4px 15px rgba(0, 0, 0, 0.1);
  transition   :
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destinations-country-card:hover {
  transform : translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destinations-country-card-img {
  width     : 100%;
  height    : 230px;
  object-fit: cover;
  display   : var(--d-block);
}

.destinations-country-card-body {
  padding: 18px;
}

.destinations-country-card-title {
  font-size    : 20px;
  color        : var(--text-dark);
  font-weight  : var(--fw-semibold);
  margin-bottom: 8px;
}

.destinations-country-card-subtitle {
  font-size    : 17px;
  color        : var(--primary-light);
  margin-bottom: 8px;
  font-weight  : var(--fw-semibold);
}

.destinations-country-card-content {
  font-size  : 15px;
  line-height: 1.7;
  color      : var(--text-light);
  margin     : 12px 0;
}

@media (max-width: 1024px) {
  .destinations-country-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .destinations-country-card {
    flex: 0 0 100%;
  }

  .destinations-country-section-title {
    font-size: 1.8rem;
  }
}

/* ---------- End Desktop Explore Your Next Adventure ---------- */

/* ---------- Start Desktop Discover Botswana’s Wonders ---------- */

.country-details-wrapper {
  min-height    : 100%;
  background    : var(--bg-light);
  padding-bottom: 20px;
}

.country-details-back-btn {
  display        : inline-flex;
  align-items    : var(--align-center);
  color          : var(--text-dark);
  text-decoration: var(--text-decoration-none);
  font-size      : 15px;
  font-weight    : var(--fw-semibold);
  transition     : color 0.2s;
  padding        : 15px 0;
}

.country-details-back-btn i {
  margin-right: 8px;
  font-size   : var(--fs-section-desc);
}

.country-details-back-btn:hover {
  color          : var(--primary-color);
  text-decoration: var(--text-decoration-none);
}

.country-details-tabs {
  background   : var(--white-color);
  margin-top   : 20px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow     : hidden;
}

.country-details-tab-nav {
  display                   : var(--d-flex);
  list-style                : none;
  margin                    : 0;
  padding                   : 0;
  border-bottom             : 1px solid var(--border-color);
  overflow-x                : auto;
  -webkit-overflow-scrolling: touch;
}

.country-details-tab-item {
  flex     : 0 0 auto;
  min-width: 150px;
}

.country-details-tab-link {
  display        : var(--d-block);
  padding        : 14px 20px;
  text-align     : center;
  color          : var(--text-light);
  text-decoration: var(--text-decoration-none);
  font-weight    : var(--fw-semibold);
  border-bottom  : 3px solid transparent;
  transition     : all 0.2s;
  white-space    : nowrap;
}

.country-details-tab-link:hover {
  color          : var(--primary-color);
  background     : #ff00000f;
  text-decoration: var(--text-decoration-none);
}

.country-details-tab-link.active {
  color              : var(--primary-color);
  border-bottom-color: var(--primary-color);
  background         : #ff00000f;
}

.country-details-tab-pane {
  display  : none;
  opacity  : 0;
  transform: translateY(6px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.country-details-tab-pane.active {
  display  : var(--d-block);
  opacity  : 1;
  border   : none;
  transform: translateY(0);
}

.country-details-section {
  padding: 15px 24px;
}

.country-details-tab-pane.active:focus-visible {
  outline   : none !important;
  box-shadow: none !important;
}


.country-details-section-title {
  font-size    : 24px;
  font-weight  : var(--fw-bold);
  color        : var(--text-dark);
  margin-bottom: 18px;
  display      : var(--d-flex);
  align-items  : var(--align-center);
}

.country-details-section-title i {
  margin-right: 12px;
  color       : var(--primary-color);
  font-size   : 24px;
}

.country-details-info-grid {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap                  : 14px;
  margin-bottom        : 14px;
}

.country-details-info-card {
  background   : var(--bg-light);
  padding      : 14px;
  border-radius: var(--radius-sm);
  border       : 1px solid var(--primary-color);
}

.country-details-info-label {
  font-size     : 12px;
  color         : var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom : 6px;
  font-weight   : var(--fw-semibold);
}

.country-details-info-value {
  font-size  : var(--fs-section-desc);
  color      : var(--text-dark);
  font-weight: var(--fw-semibold);
}

.country-details-tags {
  display  : var(--d-flex);
  flex-wrap: wrap;
  gap      : 8px;
  margin   : 8px 0;
}

.country-details-tag {
  display      : inline-block;
  padding      : 6px 12px;
  background   : #ff00000f;
  color        : var(--primary-color);
  border       : 1px dashed var(--primary-color);
  border-radius: 18px;
  font-size    : 13px;
  font-weight  : var(--fw-semibold);
}

.country-details-list {
  list-style: none;
}

.country-details-list-item {
  padding      : 10px 0;
  padding-left : 30px;
  position     : var(--position-relative);
  border-bottom: 1px solid var(--border-color);
}

.country-details-list-item:last-child {
  border-bottom: none;
}

.country-details-list-item::before {
  content    : "\f00c";
  font-family: FontAwesome;
  position   : absolute;
  left       : 0;
  color      : var(--primary-color);
  font-size  : 13px;
}

.country-details-gallery {
  max-width: 1000px;
  margin   : 20px auto;
}

.country-details-gallery-item {
  position     : var(--position-relative);
  border-radius: var(--radius-sm);
  overflow     : hidden;
  box-shadow   : 0 4px 10px rgba(0, 0, 0, 0.08);
}

.country-details-gallery-img {
  object-fit   : cover;
  border-radius: var(--radius-sm);
}

.country-details-gallery-item:hover .country-details-gallery-img {
  transform: scale(1.02);
}

.country-details-gallery-caption {
  position   : absolute;
  bottom     : 0;
  left       : 0;
  right      : 0;
  background : linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding    : 12px;
  color      : var(--white-color);
  font-weight: var(--fw-bold);
}

.country-details-card-grid {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap                  : 14px;
  margin               : 12px 0;
}

.country-details-card {
  background   : var(--bg-light);
  padding      : 18px;
  border-radius: var(--radius-sm);
  transition   :
    transform 0.2s,
    box-shadow 0.2s;
}

.country-details-card:hover {
  transform : translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.country-details-card-icon {
  width          : 48px;
  height         : 48px;
  background     : #ff00000f;
  color          : var(--primary-color);
  border-radius  : 50%;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  font-size      : 20px;
  margin-bottom  : 10px;
}

.country-details-card-title {
  font-size  : var(--fs-section-desc);
  font-weight: var(--fw-bold);
  color      : var(--text-dark);
}

.country-details-highlight-box {
  background   : linear-gradient(135deg, rgb(255 0 0 / 12%), rgba(24, 48, 3, 0));
  padding      : 16px;
  border-radius: var(--radius-sm);
  margin       : 12px 0;
}

.country-details-highlight-title {
  font-size    : 18px;
  font-weight  : var(--fw-bold);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .country-details-section-title {
    font-size: 20px;
  }

  .country-details-gallery-item {
    height: 280px;
    margin-top: 15px;
  }

  .country-details-tab-link {
    padding: 12px 14px;
  }
  .country-details-section {
  padding: 15px 0;
}
}

.country-details-gallery {
  max-width    : 100%;
  margin       : 20px auto;
  border-radius: var(--radius-sm);
  overflow     : hidden;
}

.img-fluid {
  display  : var(--d-block);
  max-width: 100%;
  height   : auto;
}

.country-details-gallery-img {
  width     : 100%;
  height    : 400px;
  object-fit: cover;
}

.carousel-caption {
  background   : rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  padding      : 10px 16px;
}

.carousel-caption h4 {
  color    : var(--white-color);
  font-size: var(--fs-section-desc);
  margin   : 0;
}

.country-details-section {
  padding         : 0px 30px;
  background-color: var(--white-color);
}

.country-details-section-title {
  font-size    : 20px;
  font-weight  : var(--fw-semibold);
  margin-bottom: 15px;
  display      : var(--d-flex);
  align-items  : var(--align-center);
  gap          : 8px;
}

.country-details-subsection {
  margin-bottom: 20px;
}

.country-details-divider {
  border    : 0;
  border-top: 1px solid var(--text-light);
  margin    : 20px 0;
}

.country-gallery-unique-grid {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows       : 200px;
  gap                  : 10px;
}

.gallery-item {
  position     : var(--position-relative);
  overflow     : hidden;
  border-radius: var(--radius-sm);
}

.gallery-item img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

@media (max-width: 768px) {

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row   : span 1;
  }
}

.map-container {
  position     : var(--position-relative);
  overflow     : hidden;
  border-radius: var(--radius-sm);
  margin-top   : 15px;
  box-shadow   : 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width : 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   Hotel Slider - Custom Responsive
   ============================================================ */

/* Outer wrapper */
.hotel-slider-outer {
  position  : relative;
  padding   : 0 44px;
  overflow  : hidden;
}

/* Track - NO wrap, slides stay in one row */
.hotel-slider-track {
  display        : flex;
  flex-wrap      : nowrap;
  gap            : 16px;
  transition     : transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  align-items    : stretch;
  will-change    : transform;
}

/* Each slide - fixed width, never shrink */
.hotel-slide {
  flex-shrink   : 0;
  flex-grow     : 0;
  flex-basis    : calc(33.333% - 11px);
  display       : flex;
  flex-direction: column;
}

/* Card */
.Quick-Guide-hotels {
  border-radius : 10px;
  overflow      : hidden;
  box-shadow    : 0 4px 18px rgba(0,0,0,0.12);
  background    : #fff;
  display       : flex;
  flex-direction: column;
  height        : 100%;
  transition    : transform 0.3s ease, box-shadow 0.3s ease;
}
.Quick-Guide-hotels:hover {
  transform : translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* Image */
.Quick-Guide-hotels img {
  width      : 100%;
  height     : 210px;
  object-fit : cover;
  display    : block;
  flex-shrink: 0;
}

/* Caption */
.Quick-Guide-hotels .caption {
  padding       : 14px;
  display       : flex;
  flex-direction: column;
  flex          : 1;
}
.Quick-Guide-hotels .caption h4 {
  font-size  : 14px;
  font-weight: 700;
  color      : #1a1a1a;
  margin     : 0 0 6px;
  line-height: 1.3;
}
.Quick-Guide-hotels .caption p.text-muted {
  font-size  : 12px;
  color      : #777;
  margin     : 0 0 12px;
  line-height: 1.5;
  flex       : 1;
}

/* Buttons */
.hotel-btn-row {
  display   : flex;
  gap       : 5px;
  margin-top: auto;
}
.hotel-btn-row .btn {
  flex       : 1;
  font-size  : 11px;
  padding    : 5px 3px;
  white-space: nowrap;
  text-align : center;
}

/* Nav arrows */
.hotel-slider-prev,
.hotel-slider-next {
  position       : absolute;
  top            : 40%;
  transform      : translateY(-50%);
  width          : 34px;
  height         : 34px;
  background     : #fff;
  border         : none;
  border-radius  : 50%;
  box-shadow     : 0 2px 10px rgba(0,0,0,0.18);
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  z-index        : 20;
  transition     : all 0.25s ease;
  color          : #333;
  font-size      : 13px;
  line-height    : 1;
}
.hotel-slider-prev { left: 4px; }
.hotel-slider-next { right: 4px; }
.hotel-slider-prev:hover,
.hotel-slider-next:hover {
  background: #FF0000;
  color     : #fff;
  box-shadow: 0 4px 14px rgba(255,0,0,0.3);
}
.hotel-slider-prev:disabled,
.hotel-slider-next:disabled {
  opacity: 0.3;
  cursor : not-allowed;
}

/* Dots */
.hotel-slider-dots {
  display        : flex;
  justify-content: center;
  gap            : 7px;
  margin-top     : 14px;
}
.hotel-slider-dot {
  width        : 8px;
  height       : 8px;
  border-radius: 50%;
  background   : #ddd;
  border       : none;
  cursor       : pointer;
  padding      : 0;
  transition   : background 0.25s, transform 0.25s;
}
.hotel-slider-dot.active {
  background: #FF0000;
  transform : scale(1.35);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .hotel-slider-outer          { padding: 0 34px; }
  .hotel-slide                 { flex-basis: calc(100% - 0px); }
  .Quick-Guide-hotels img      { height: 185px; }
  .hotel-btn-row .btn          { font-size: 10px; padding: 4px 2px; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .hotel-slider-outer          { padding: 0 38px; }
  .hotel-slide                 { flex-basis: calc(50% - 8px); }
  .Quick-Guide-hotels img      { height: 195px; }
}
@media (min-width: 992px) {
  .hotel-slide                 { flex-basis: calc(33.333% - 11px); }
}

/* <!-- End Quick Guide --> */
/* ---------- End Desktop Discover Botswana’s Wonders ---------- */
/* ---------- Start Desktop Footer ---------- */
.footer-wrapper {
  background     : #3a3a3a url(/assets/img/bg-img/tour-bg.png) repeat center center;
  background-size: contain;
  color          : var(--white-color);
  margin-top     : 0;
  position       : var(--position-relative);
  z-index        : 1;
  animation      : moveBg 10s linear infinite;
  overflow       : hidden;
}

.footer-wrapper::before {
  content   : "";
  position  : absolute;
  inset     : 0;
  background: rgba(0, 0, 0, 0.5);
  z-index   : -1;
}

@keyframes moveBg {
  from {
    background-position: 100% center;
  }

  to {
    background-position: 0% center;
  }
}

.footer-main {
  padding-top   : 40px;
  padding-bottom: 40px;
}

.footer-logo-section {
  margin-bottom: 30px;
}

.footer-logo {
  background   : var(--white-color);
  padding      : 5px;
  display      : inline-block;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
  width : auto;
}

.footer-tagline {
  font-size    : var(--fs-section-desc);
  line-height  : 1.8;
  color        : var(--bg-light);
  margin-bottom: 25px;
  max-width    : 400px;
}

.footer-social-links {
  display  : var(--d-flex);
  gap      : 15px;
  flex-wrap: wrap;
}

.footer-social-link {
  width          : 40px;
  height         : 40px;
  background     : #c1969629;
  border-radius  : 50%;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  color          : var(--white-color);
  font-size      : 18px;
  transition     : all 0.3s;
  text-decoration: var(--text-decoration-none);
}

.footer-social-link:hover {
  background: var(--primary-color);
  color     : var(--white-color);
  transform : translateY(-3px);
}

.footer-section-title {
  font-size     : 20px;
  font-weight   : var(--fw-bold);
  margin-bottom : 25px;
  color         : var(--white-color);
  position      : var(--position-relative);
  padding-bottom: 12px;
}

.footer-links-list {
  list-style: none;
  padding   : 0;
  margin    : 0;
}

.footer-links-item {
  margin-bottom: 12px;
}

.footer-links-anchor {
  color          : var(--bg-light);
  text-decoration: var(--text-decoration-none);
  font-size      : 15px;
  transition     : all 0.3s;
  display        : inline-block;
}

.footer-links-anchor:hover {
  color          : var(--primary-color);
  padding-left   : 8px;
  text-decoration: var(--text-decoration-none);
}

.footer-contact-item {
  display      : var(--d-flex);
  align-items  : flex-start;
  margin-bottom: 20px;
  color        : var(--bg-light);
  font-size    : 15px;
}

.footer-contact-icon {
  width          : 40px;
  height         : 40px;
  background     : #c1969629;
  border-radius  : 50%;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  margin-right   : 15px;
  flex-shrink    : 0;
  color          : var(--primary-color);
  font-size      : var(--fs-section-desc);
}

.footer-contact-details {
  flex       : 1;
  line-height: 1.6;
}

.footer-contact-label {
  font-weight  : var(--fw-semibold);
  color        : var(--white-color);
  margin-bottom: 5px;
}

.footer-contact-link {
  color          : var(--bg-light);
  text-decoration: var(--text-decoration-none);
  transition     : color 0.3s;
}

.footer-contact-link:hover {
  color          : var(--primary-color);
  text-decoration: var(--text-decoration-none);
}

.footer-bottom {
  background: #2a2a2a;
  padding   : 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  text-align: center;
  color     : var(--white-color);
  font-size : var(--fs-small-desc);
  margin    : 0;
}

.footer-copyright a {
  color          : var(--primary-color);
  text-decoration: var(--text-decoration-none);
  font-weight    : var(--fw-semibold);
}

.footer-copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer-wrapper {
    padding-top: 40px;
  }

  .footer-section {
    margin-bottom: 40px;
  }

  .footer-section-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .footer-wrapper {
    padding-top: 30px;
  }

  .footer-main {
    padding-bottom: 20px;
  }

  .footer-logo-section {
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

/* <!-- ---------- Start Desktop Tailored trips for every kind of travel ---------- --> */
.trip-card {
  position           : var(--position-relative);
  background-size    : cover;
  background-position: center;
  border-radius      : var(--radius-sm);
  color              : var(--white-color);
  height             : 420px;
  overflow           : hidden;
  display            : var(--d-flex);
  align-items        : flex-end;
  padding            : 20px;
  transition         :
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.trip-card::before {
  content   : "";
  position  : absolute;
  inset     : 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  transition: opacity 0.4s ease;
  z-index   : 1;
}

.trip-card:hover {
  transform : translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.trip-nights {
  position      : absolute;
  top           : 15px;
  right         : 20px;
  font-size     : 13px;
  text-transform: uppercase;
  font-weight   : var(--fw-semibold);
  background    : rgba(0, 0, 0, 0.4);
  padding       : 4px 10px;
  border-radius : 20px;
  z-index       : 2;
  color         : var(--white-color);
}

.trip-content {
  position: var(--position-relative);
  z-index : 2;
}

.trip-title {
  font-size     : 18px;
  font-weight   : var(--fw-bold);
  margin-bottom : 8px;
  text-transform: uppercase;
  color         : var(--white-color);
}

.trip-desc {
  font-size    : var(--fs-small-desc);
  margin-bottom: 6px;
  display      : none;
  color        : var(--white-color);
}

.price {
  font-size  : 13px;
  color      : var(--primary-light);
  font-weight: var(--fw-semibold);
  display    : var(--d-block);
}

.btn-trip {
  border        : 1px solid var(--white-color) !important;
  color         : var(--white-color) !important;
  text-transform: uppercase;
  font-size     : 12px;
  letter-spacing: 1px;
  padding       : 7px 14px;
  transition    : all 0.3s ease;
  margin-top    : 5px;
}

.btn-trip:hover {
  background: var(--primary-light);
  color     : var(--white-color) !important;
}

.trip-card:hover .trip-desc {
  display: var(--d-block);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .trip-card {
    height : 320px;
    padding: 15px;
  }

  .trip-title {
    font-size: var(--fs-section-desc);
  }

  .trip-desc {
    font-size: 13px;
  }
}

/* <!-- ---------- End Desktop Tailored trips for every kind of travel ---------- --> */

/* Custom margin helpers for Bootstrap 3 */
.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mx-auto {
  margin-left : auto !important;
  margin-right: auto !important;
}

.mx-20 {
  margin-left : 20px !important;
  margin-right: 20px !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

/* Custom padding helpers for Bootstrap 3 */
/* Padding Utilities */
.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

/* Padding Top */
.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

/* Padding Left */
.pl-0 {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

/* Padding Right */
.pr-0 {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

/* Padding X-axis (left + right) */
.px-0 {
  padding-left : 0 !important;
  padding-right: 0 !important;
}

.px-5 {
  padding-left : 5px !important;
  padding-right: 5px !important;
}

.px-10 {
  padding-left : 10px !important;
  padding-right: 10px !important;
}

.px-15 {
  padding-left : 15px !important;
  padding-right: 15px !important;
}

.px-20 {
  padding-left : 20px !important;
  padding-right: 20px !important;
}

/* Padding Y-axis (top + bottom) */
.py-0 {
  padding-top   : 0 !important;
  padding-bottom: 0 !important;
}

.py-5 {
  padding-top   : 5px !important;
  padding-bottom: 5px !important;
}

.py-10 {
  padding-top   : 10px !important;
  padding-bottom: 10px !important;
}

.py-15 {
  padding-top   : 15px !important;
  padding-bottom: 15px !important;
}

.py-20 {
  padding-top   : 20px !important;
  padding-bottom: 20px !important;
}

/* Flex utilities similar to Bootstrap 4/5 */
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.fs-15 {
  font-size: 15px;
}

/* main africa page */
/* <!-- ---------- Start Adventure Awaits in Every Corner ---------- --> */
.africa-intro-section {
  background: transparent;
  padding   : 0px 20px 20px;
  position  : var(--position-relative);
  overflow  : hidden;
}

.africa-title {
  color: var(--text-black);
}

.africa-subtext {
  max-width: 850px;
  margin   : 0 auto auto;
  color    : var(--text-light);
}

@media (max-width: 768px) {
  .africa-subtext {
    padding: 0 10px;
  }
}

/* <!-- ---------- End Adventure Awaits in Every Corner ---------- --> */
/* <!-- ---------- Start All countrys ---------- --> */

.section-title {
  text-align   : center;
  font-size    : 2.3rem;
  font-weight  : var(--fw-semibold);
  color        : var(--text-black);
  margin-bottom: 40px;
  position     : var(--position-relative);
}

.countries-grid {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap                  : 25px;
}

.countries-section {
  padding-left : 35px;
  padding-right: 35px;
}

.discover-section {
  padding-left : 35px;
  padding-right: 35px;
}

.country-all-card {
  position     : var(--position-relative);
  width        : 100%;
  aspect-ratio : 3 / 4;
  border-radius: 16px;
  overflow     : hidden;
  box-shadow   : 0 5px 20px rgba(0, 0, 0, 0.1);
}

.country-all-card img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.country-all-card:hover img {
  transform: scale(1.05);
}

.country-all-card img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : var(--d-block);
  transition: transform 0.6s ease;
}

.country-all-card .country-overlay {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(to top, rgb(0 0 0 / 84%), transparent 60%);
  transition: opacity 0.4s ease;
}

.country-content {
  position: absolute;
  bottom  : 25px;
  left    : 25px;
  color   : var(--white-color);
  z-index : 2;
}

.country-content .subtitle {
  font-size    : 0.95rem;
  opacity      : 0.8;
  margin-bottom: 5px;
}

.country-content .country-name {
  font-size  : 1.6rem;
  font-weight: var(--fw-semibold);
}

.country-hover-icon {
  position       : absolute;
  right          : 25px;
  bottom         : 25px;
  width          : 42px;
  height         : 42px;
  background     : var(--primary-color);
  border-radius  : 50%;
  display        : var(--d-flex);
  justify-content: center;
  align-items    : var(--align-center);
  opacity        : 0;
  transform      : translateX(20px);
  transition     : all 0.4s ease;
}

.country-hover-icon i {
  color    : var(--white-color);
  font-size: 18px;
}

/* Hover Effects */
.country-all-card:hover {
  transform : translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.country-all-card:hover img {
  transform: scale(1.1);
}

.country-all-card:hover .country-hover-icon {
  opacity  : 1;
  transform: rotate(-36deg);
}

.country-all-card:hover .country-overlay {
  opacity: 0.9;
}

/* <!-- ---------- End All countrys ---------- --> */

/* <!-- ---------- Start Discover the Wild Soul of Africa ---------- --> */
.africa-explore-section {
  --gap: 80px;
}

.africa-explore-section h2 {
  font-size     : 2.5rem;
  letter-spacing: 0.5px;
}

.africa-content-block {
  margin-bottom: var(--gap);
}

.africa-img-wrapper {
  position     : var(--position-relative);
  overflow     : hidden;
  border-radius: 16px;
  box-shadow   : 0 10px 25px rgba(0, 0, 0, 0.15);
}

.africa-img-wrapper img {
  width     : 100%;
  height    : 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.africa-img-wrapper:hover img {
  transform: scale(1.07);
}

.css-1i5tpjv {
  margin: 20px 0;
}

/* <!-- ---------- End Discover the Wild Soul of Africa ---------- --> */

/* start packages page style  */
.package-card {
  display       : var(--d-flex);
  flex-direction: column;
  height        : 100%;
  box-shadow    : rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border        : 1px solid var(--text-light)66667;
  padding       : 5px;
  transition    : all 0.3s ease;
}

.package-card:hover {
  transform : translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.package-card:hover .package-card-img-top {
  transform: scale(0.9);
}

.package-card-img-top {
  transition: transform 0.4s ease;
}

.w-100 {
  width: 100%;
}

.package-card-img-top {
  height    : 220px;
  object-fit: cover;
}

.package-card-body {
  flex          : 1;
  display       : var(--d-flex);
  flex-direction: column;
}

.d-flex {
  display: flex !important;
}

.package-card-body {
  flex          : 1;
  display       : var(--d-flex);
  flex-direction: column;
}

.package-card-body {
  padding                   : 1.5rem;
  font-size                 : 0.9rem;
  background                : #fafafa;
  border-bottom-left-radius : 1rem;
  border-bottom-right-radius: 1rem;
  justify-content           : var(--justify-between);
}

.package-card-title {
  font-size  : 20px;
  font-weight: var(--fw-bold);
  color      : var(--text-light);
}

.package-card-info-line {
  margin: 0.6rem 0;
}

.package-card-info-line i {
  color: var(--primary-color);
}


.card-price-details {
  display        : var(--d-flex);
  justify-content: end;
  align-items    : var(--align-center);
  padding        : 10px 0;
}

.package-card-price-section {
  font-weight: 900;
  font-size  : 1.5rem;
  color      : var(--text-dark);
  text-align : right;
}

.package-card-price-section a {
  color: var(--text-dark);
}

.package-card-price-section .request-btn {
  font-weight    : 900;
  font-size      : 1.2rem;
  /* Slightly adjusted for button fit */
  color          : var(--text-dark);
  text-decoration: none;
  line-height    : 1;
}

.discoer-all-card {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap                  : 1.5rem;
}

.package-mainbackground-blur {
  position: var(--position-relative);
}

.package-mainbackground-blur::before {
  content         : "";
  position        : absolute;
  top             : 0;
  left            : 0;
  width           : 100%;
  height          : 100%;
  background-image: url(/assets/img/bg-img/bg-img.png);
  filter          : blur(1px);
}

.package-mainbackground-blur>* {
  position: var(--position-relative);
  z-index : 1;
}

/* end packages page style  */

/* Start DC Group Companies style  */
.dc-group-container {
  max-width: 1400px;
  margin   : 0 auto;
}

.dc-group-header {
  text-align   : center;
  margin-bottom: 10px;
}

.dc-group-cards {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap                  : 30px;
}

.dc-company-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dc-company-card {
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.dc-company-card {
  background: white;
  padding   : 30px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position  : var(--position-relative);
  overflow  : hidden;
  border    : 1px solid var(--text-light)66667;
}

.dc-company-logo {
  width          : 80px;
  height         : 80px;
  margin         : 0 auto 25px;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  font-size      : 2rem;
  font-weight    : bold;
  transition     : transform 0.3s ease;
}

.dc-company-logo img {
  width : 100px;
  height: 100px;
}

.dc-company-title {
  font-size    : 1.8rem;
  font-weight  : var(--fw-bold);
  color        : var(--text-dark);
  text-align   : center;
  margin-bottom: 8px;
}

.dc-company-subtitle {
  font-size    : 1.5rem;
  color        : var(--text-light);
  text-align   : center;
  margin-bottom: 20px;
  font-weight  : var(--fw-semibold);
  font-style   : italic;
}

/* end DC Group Companies style  */

/* Start DC our team  style  */
.our-team-section {
  padding: 60px 0;
}

.section-title {
  font-size    : 28px;
  font-weight  : var(--fw-bold);
  color        : var(--text-black);
  margin-bottom: 10px;
}

.section-subtitle {
  color        : var(--text-light);
  font-size    : 15px;
  margin-bottom: 40px;
}

.our-team-card {
  background   : var(--white-color);
  border-radius: var(--radius-sm);
  overflow     : hidden;
  box-shadow   : 0 2px 8px rgba(0, 0, 0, 0.1);
  padding      : 20px 15px;
  transition   : all 0.3s ease;
}

.our-team-card:hover {
  transform : translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.our-team-image {
  width        : 120px;
  height       : 120px;
  border-radius: 50%;
  object-fit   : cover;
  margin-bottom: 15px;
  transition   : transform 0.4s ease;
}

.our-team-card:hover .our-team-image {
  transform: scale(1.08);
}

.our-team-name {
  font-size    : 18px;
  font-weight  : var(--fw-semibold);
  color        : var(--text-dark);
  margin-bottom: 5px;
}

.our-team-position {
  color      : var(--primary-color);
  font-size  : var(--fs-section-desc);
  font-weight: var(--fw-regular);
}

.our-team-description {
  font-size: var(--fs-small-desc);
}

/* end DC our team  style  */

/* Start DC our clients style  */

.client-logo-card {
  margin-bottom  : 25px;
  background     : #fff;
  border-radius  : 14px;
  padding        : 30px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  box-shadow     : 0 6px 18px rgba(0, 0, 0, 0.08);
  transition     : 0.3s;
  height         : 120px;
}

.client-logo-card img {
  max-width : 100%;
  max-height: 60px;
  object-fit: contain;
  transition: 0.4s;
}

/* Hover Effect */

.client-logo-card:hover img {
  filter: grayscale(100%);
}

@media (max-width: 767px) {
  .client-logo-card {
    padding: 20px;
  }

  .client-logo-card img {
    max-width: 120px;
  }
}

/* end DC our clients style  */

/* <!--  Start Gallery Section  --> */
.gallery {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  grid-auto-rows       : 12.5rem;
  grid-auto-flow       : dense;
  gap                  : 0.75rem;
}

@media (width> 600px) {
  .gallery figure:nth-child(4n + 1) {
    grid-row: span 2;
  }
}

@media (width> 600px) {
  .gallery figure:nth-child(1) {
    grid-area: span 2 / span 2;
  }
}

.gallery figure {
  container            : figure / inline-size;
  overflow             : hidden;
  display              : grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows   : minmax(0, 1fr);
}

.gallery-img {
  inline-size: 100%;
  block-size : 100%;
  object-fit : cover;
  grid-area  : 1 / 1 / -1 / -1;
  transition : scale 1s ease-in-out;
}

.gallery-img {
  inline-size: 100%;
  block-size : 100%;
  object-fit : cover;
  grid-area  : 1 / 1 / -1 / -1;
  transition : scale 1s ease-in-out;
}

.gallery {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  grid-auto-rows       : 12.5rem;
  grid-auto-flow       : dense;
  gap                  : 0.75rem;
}

.gallery figure {
  overflow: hidden;
  display : grid;
}

.gallery-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  cursor   : pointer;
}

/* <!--  END Gallery Section  --> */

/* ---------- Start About Us – DC Group---------- */
.Building-trust-intro-about {
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  gap            : 3rem;
  padding        : 0px 2rem 0px;
  max-width      : 1200px;
  margin         : 80px auto;
  flex-wrap      : wrap;
  position       : var(--position-relative);
}

.Building-trust-intro-about__image-wrapper {
  position : var(--position-relative);
  min-width: 320px;
  max-width: 450px;
  flex     : 1 1 320px;
}

.Building-trust-intro-about__main-circle {
  position     : var(--position-relative);
  border       : 2px dotted var(--border-color);
  border-radius: 50%;
  overflow     : visible;
  width        : 100%;
  padding-top  : 100%;
}

.Building-trust-intro-about__main-image {
  position     : absolute;
  top          : 0;
  left         : 0;
  width        : 100%;
  height       : 100%;
  border-radius: 50%;
  object-fit   : cover;
  display      : var(--d-block);
}

.Building-trust-intro-about__small-circle {
  position     : absolute;
  border       : 3px solid var(--white-color);
  box-shadow   : 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background   : white;
  overflow     : hidden;
}

.Building-trust-intro-about__small-circle--left {
  width : 80px;
  height: 80px;
  top   : 15%;
  left  : -50px;
}

.Building-trust-intro-about__small-image {
  width        : 100%;
  height       : 100%;
  object-fit   : cover;
  border-radius: 50%;
  display      : var(--d-block);
}

.Building-trust-intro-about__small-circle--right {
  width : 80px;
  height: 80px;
  bottom: 10%;
  right : -40px;
}

.Building-trust-intro-about__curved-text {
  position   : absolute;
  top        : -40px;
  left       : 50%;
  transform  : translateX(-50%);
  color      : var(--text-dark);
  white-space: nowrap;
}

.Building-trust-intro-about__text-content {
  flex       : 1 1 400px;
  max-width  : 600px;
  padding-top: 1rem;
}

.Building-trust-intro-about__highlight {
  color: #e5726f;
}

.Building-trust-intro-about__signature {
  font-weight   : 800;
  font-size     : 25px;
  line-height   : 32px;
  letter-spacing: 0.1px;
  margin-bottom : 1rem;
  color         : var(--text-black);
  user-select   : none;
}

@media (max-width: 950px) {
  .Building-trust-intro-about {
    gap: 2rem;
  }

  .values-that-unite-images .travel-group {
    display: none;
  }

  .Building-trust-intro-about__image-wrapper {
    max-width: 380px;
  }

  .values-that-unite-content {
    flex: auto !important;
  }

  .values-that-unite-section {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 700px) {
  .Building-trust-intro-about {
    flex-direction: column;
    padding       : 4.5rem 1rem;
  }

  .Building-trust-intro-about__image-wrapper,
  .Building-trust-intro-about__text-content {
    max-width: 100%;
    flex     : 1 1 100%;
  }

  .Building-trust-intro-about__heading {
    text-align: center;
  }

  .Building-trust-intro-about__signature {
    text-align    : center;
    font-size     : 20px;
    line-height   : 32px;
    letter-spacing: 0.15px;
    font-weight   : var(--fw-semibold);
  }

  .Building-trust-intro-about__small-circle--left {
    top   : -40px;
    left  : 20%;
    width : 60px;
    height: 60px;
  }

  .Building-trust-intro-about__small-circle--right {
    bottom: -40px;
    right : 20%;
    width : 60px;
    height: 60px;
  }

  .Building-trust-intro-about__curved-text {
    display: none;
  }
}

/* ---------- End About Us – DC Group---------- */

/* ---------- Start Who We Are---------- */
section.guiding-principles {
  background-image     : url("https://backpacktraveler.qodeinteractive.com/wp-content/uploads/2018/09/landing-headers-background.jpg");
  background-repeat    : no-repeat;
  background-size      : cover !important;
  background-attachment: fixed;
  border-radius        : var(--radius-sm);
  padding              : 60px 30px;
  max-width            : 100%;
  position             : var(--position-relative);
  background-size      : 100px 100px;
  background-position  :
    0 0,
    50px 50px;
}

.guiding-principles__top {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap                  : 30px;
  align-items          : var(--align-center);
}

.guiding-principles__image-main {
  width        : 100%;
  border-radius: var(--radius-sm);
  object-fit   : cover;
  max-height   : 360px;
}

.guiding-principles__content {
  max-width: 600px;
}

.guiding-principles__image-secondary {
  width        : 260px;
  border-radius: var(--radius-sm);
  object-fit   : cover;
  display      : var(--d-block);
  margin-left  : initial;
}

.principles-list {
  margin-top     : 2rem !important;
  display        : var(--d-flex);
  flex-wrap      : wrap;
  gap            : 30px 40px;
  justify-content: var(--justify-between);
  max-width      : 1000px;
  margin         : 0 auto;
  padding-top    : 10px;
}

.principle-item {
  flex       : 1 1 280px;
  display    : var(--d-flex);
  gap        : 15px;
  align-items: flex-start;
}

.principle-item__icon {
  background     : var(--white-color);
  border-radius  : var(--radius-sm);
  padding        : 12px;
  color          : var(--text-light);
  flex-shrink    : 0;
  height         : 48px;
  width          : 48px;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
}

.principle-item__icon svg {
  width : 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .guiding-principles__top {
    grid-template-columns: 1fr;
    text-align           : center;
  }

  .guiding-principles__content {
    max-width : 100%;
    margin-top: 30px;
  }

  .circle-explore {
    margin: 20px auto 40px;
  }

  .guiding-principles__image-secondary {
    margin   : 20px auto 0;
    width    : 80%;
    max-width: 300px;
  }
}

/* ---------- End Who We Are---------- */

/* ---------- Start Our Commitment / Promise to You---------- */
.values-that-unite-section {
  padding: 0px 20px;

  color     : var(--text-dark);
  background: var(--white-color);
}

.values-that-unite-container {
  max-width  : 1200px;
  margin     : 0 auto;
  display    : var(--d-flex);
  flex-wrap  : wrap;
  align-items: var(--align-center);
  gap        : 40px;
}

.values-that-unite-content {
  flex: 1 1 500px;
}

.values-that-unite-subtitle {
  color        : var(--primary-light);
  font-size    : 18px;
  font-weight  : var(--fw-semibold);
  margin-bottom: 10px;
}

.values-that-unite-features {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap                  : 20px;
  margin-top           : 25px;
}

.values-that-unite-feature {
  display    : var(--d-flex);
  align-items: var(--align-center);
  gap        : 12px;
}

.values-that-unite-feature-icon {
  font-size       : 32px;
  color           : var(--primary-light);
  flex-shrink     : 0;
  background-color: var(--primary-light);
  border-radius   : var(--radius-sm);
  padding         : 5px;
}

.adventure-travel {
  top       : -24%;
  position  : var(--position-relative);
  left      : -22%;
  border    : 8px solid var(--white-color);
  box-shadow: none !important;
}

.values-that-unite-feature h4 {
  font-size  : var(--fs-section-desc);
  font-weight: var(--fw-bold);
  margin     : 0 0 5px;
}

.values-that-unite-images {
  flex                 : 1 1 500px;
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  gap                  : 15px;
}

.values-that-unite-images img {
  width        : 100%;
  border-radius: var(--radius-sm);
  object-fit   : cover;
  box-shadow   : 0 4px 12px rgba(0, 0, 0, 0.1);
}

.values-that-unite-images img:first-child {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .values-that-unite-container {
    flex-direction: column;
  }

  .values-that-unite-images {
    grid-template-columns: 1fr;
  }

  .values-that-unite-images img:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 950px) {
  .values-that-unite-images .travel-group {
    display: none;
  }

  .values-that-unite-content {
    flex: auto !important;
  }

  .values-that-unite-section {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .values-that-unite-images {
    flex: auto;
  }
}

/* ---------- End Our Commitment / Promise to You---------- */

/* ---------- Start Our Journey---------- */

.Our-Journey-wrapper {
  padding         : 0px 20px;
  background-image: url(/assets/img/bg-img/h1-backround-1.jpg);
  position        : var(--position-relative);
  overflow        : hidden;
}

.Our-Journey-wrapper::before {
  content   : "";
  position  : absolute;
  top       : 0;
  left      : 0;
  right     : 0;
  bottom    : 0;
  background: url("/assets/img/bg-img/h1-backround-1.jpg");
  opacity   : 0.3;
}

.Our-Journey-title {
  text-align   : center;
  margin-bottom: 2rem;
  position     : var(--position-relative);
  z-index      : 2;
}

.Our-Journey-title p {
  color    : var(--primary-text);
  font-size: 1rem;
  max-width: 600px;
  margin   : 0 auto;
}

.Our-Journey-steps {
  display        : var(--d-flex);
  justify-content: var(--justify-between);
  flex-wrap      : wrap;
  position       : var(--position-relative);
  margin         : 0 auto;
  z-index        : 2;
}

.Our-Journey-step {
  flex      : 1;
  min-width : 220px;
  text-align: center;
  position  : var(--position-relative);
  padding   : 30px 15px;
  cursor    : pointer;
  transition: all 0.4s ease;
}

.Our-Journey-step:hover {
  transform: translateY(-10px);
}

.Our-Journey-circle {
  width          : 80px;
  height         : 80px;
  border-radius  : 50%;
  background     : linear-gradient(45deg, var(--white-color)fff, var(--bg-light));
  color          : var(--text-black);
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  margin         : 0 auto 20px;
  font-weight    : var(--fw-bold);
  font-size      : 18px;
  position       : var(--position-relative);
  z-index        : 3;
  box-shadow     : 0 10px 30px rgba(0, 0, 0, 0.3);
  transition     : all 0.4s ease;
}

.Our-Journey-circle::before {
  content      : "";
  position     : absolute;
  top          : -5px;
  left         : -5px;
  right        : -5px;
  bottom       : -5px;
  border-radius: 50%;
  background   : linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
  z-index      : -1;
  opacity      : 0;
  transition   : opacity 0.3s ease;
}

.Our-Journey-step:hover .Our-Journey-circle::before {
  opacity: 1;
}

.Our-Journey-line {
  position: absolute;
  top     : 70px;
  left    : 10%;
  right   : 10%;
  height  : 4px;
  background: linear-gradient(90deg,
      rgb(68 60 60 / 30%),
      rgb(0 0 0 / 71%),
      rgb(60 54 54 / 30%));
  z-index      : -11;
  border-radius: var(--radius-sm);
  overflow     : hidden;
}

.Our-Journey-line::before {
  content   : "";
  position  : absolute;
  top       : 0;
  left      : -100%;
  width     : 100%;
  height    : 100%;
  background: linear-gradient(90deg, #000000, rgb(46 41 41 / 80%), #00000085);
  animation : shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.step-content {
  background     : rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius  : var(--radius-sm);
  padding        : 25px 20px;
  border         : 1px solid rgba(255, 255, 255, 0.2);
  transition     : all 0.4s ease;
  box-shadow     : 0 8px 32px rgba(0, 0, 0, 0.1);
}

.Our-Journey-step:hover .step-content {
  background  : rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow  : 0 12px 40px rgba(0, 0, 0, 0.2);
}

.Our-Journey-step h5 {
  font-weight  : var(--fw-bold);
  margin-bottom: 10px;
  color        : var(--text-black);
  font-size    : 1.3rem;
}

.Our-Journey-step p {
  font-size  : 1rem;
  color      : var(--text-light);
  line-height: 1.6;
  margin     : 0;
}

.step-number {
  position       : absolute;
  top            : -10px;
  right          : 20px;
  background     : rgba(255, 255, 255, 0.2);
  color          : var(--white-color);
  width          : 30px;
  height         : 30px;
  border-radius  : 50%;
  display        : var(--d-flex);
  align-items    : var(--align-center);
  justify-content: center;
  font-size      : var(--fs-small-desc);
  font-weight    : var(--fw-semibold);
  border         : 2px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  .Our-Journey-line {
    bottom: 10px;
  }

  .Our-Journey-step {
    padding: 20px 10px;
  }

  .Our-Journey-circle {
    width    : 60px;
    height   : 60px;
    font-size: var(--fs-section-desc);
  }
}

.Our-Journey-line {
  position: absolute;
  bottom  : 20px;
  left    : 10%;
  right   : 10%;
  height  : 4px;
  background: linear-gradient(90deg,
      rgb(68 60 60 / 30%),
      rgb(0 0 0 / 71%),
      rgb(60 54 54 / 30%));
  z-index      : -1;
  border-radius: var(--radius-sm);
  overflow     : hidden;
}

.Our-Journey-step {
  display        : var(--d-flex);
  flex-direction : column;
  align-items    : var(--align-center);
  justify-content: flex-start;
}

.Our-Journey-circle {
  margin-bottom: 15px;
}

.step-content {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .step-content {
    background   : rgb(255 255 255);
    margin-bottom: 0;
  }

  .Our-Journey-steps {
    flex-direction: column;
    align-items   : var(--align-center);
    gap           : 5px;
  }

  .Our-Journey-line {
    width    : 4px;
    height   : calc(100% - 160px);
    top      : 80px;
    left     : 50%;
    transform: translateX(-50%);
    right    : auto;
  }

  .Our-Journey-step {
    max-width    : 400px;
    width        : 100%;
    margin-bottom: 0px;
  }

  .client-testimonials-title::before,
  .client-testimonials-title::after {
    display: none;
  }

  .client-testimonials-items {
    width: 380px !important;
  }
}

@media (max-width: 576px) {
  .client-testimonials-items {
    width: 100% !important;
  }

  .Our-Journey-wrapper {
    padding: 0px 15px;
  }

  .Our-Journey-circle {
    width    : 70px;
    height   : 70px;
    font-size: var(--fs-section-desc);
  }

  .step-content {
    padding: 20px 15px;
  }
}

.Our-Journey-step {
  opacity  : 0;
  animation: fadeInUp 0.8s ease forwards;
}

.Our-Journey-step:nth-child(2) {
  animation-delay: 0.1s;
}

.Our-Journey-step:nth-child(3) {
  animation-delay: 0.2s;
}

.Our-Journey-step:nth-child(4) {
  animation-delay: 0.3s;
}

.Our-Journey-step:nth-child(5) {
  animation-delay: 0.4s;
}

.Our-Journey-step:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity  : 0;
    transform: translateY(30px);
  }

  to {
    opacity  : 1;
    transform: translateY(0);
  }
}

/* ---------- End Our Journey---------- */

/* ---------- Start Testimonials---------- */
.client-testimonials {
  background: var(--bg-light);
  padding   : 20px 0 60px 0;
}

.client-testimonials h2 {
  text-align   : center;
  margin-bottom: 40px;
  font-weight  : var(--fw-semibold);
  color        : var(--text-dark);
}

.client-testimonials .card {
  background    : var(--white-color);
  border        : 1px solid #eee;
  border-radius : var(--radius-sm);
  box-shadow    : 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align    : center;
  padding       : 25px;
  transition    : 0.3s;
  margin        : 10px 0;
  height        : 100%;
  display       : var(--d-flex);
  flex-direction: column;
}

.client-testimonials .card:hover {
  transform: translateY(-5px);
}

.client-testimonials .card i {
  font-size    : 40px;
  color        : var(--primary-dark);
  margin-bottom: 15px;
}

.client-testimonials .card h4 {
  font-size    : 18px;
  font-weight  : var(--fw-semibold);
  margin-bottom: 5px;
  color        : var(--text-dark);
}

.carousel-control.left,
.carousel-control.right {
  background: none;
  color     : var(--text-light);
}

@media (max-width: 991px) {
  .client-testimonials .col-md-4 {
    width: 100%;
  }
}

/* ---------- End Testimonials---------- */

/* start contact page */
.contact-us-section {
  padding         : 50px 0;
  background-color: var(--bg-light);
}

.section-title {
  font-size    : 26px;
  font-weight  : var(--fw-semibold);
  margin-bottom: 15px;
  color        : var(--text-dark);
}

.contact-info-box {
  background   : var(--white-color);
  padding      : 30px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 3px 15px rgba(0, 0, 0, 0.05);
}

.contact-details li {
  font-size    : var(--fs-small-desc);
  color        : var(--text-light);
  margin-bottom: 12px;
}

.contact-details i {
  color    : var(--primary-color);
  font-size: 20px;
  width    : 25px;
}

.contact-mail {
  color: var(--primary-color);
}

.contact-form-box {
  background   : var(--white-color);
  padding      : 30px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 3px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  height       : 45px;
  border-radius: var(--radius-sm);
  border       : 1px solid var(--border-color);
  box-shadow   : none;
}

textarea.form-control {
  height: auto;
}

.contact-map iframe {
  border-radius: var(--radius-sm);
  margin-top   : 40px;
}

@media (max-width: 767px) {

  .contact-info-box,
  .contact-form-box {
    margin-bottom: 30px;
  }
}

/* end contact page */

/* start home hero banner  */
.hero-content {
  text-align: center;
  z-index   : 2;
}

.hero-title {
  color         : var(--white-color);
  margin-bottom : 35px;
  font-size     : var(--hero-title-font-size);
  font-weight   : var(--hero-title-font-weight);
  letter-spacing: var(--hero-title-letter-spacing);
  text-transform: uppercase;
  line-height   : var(--hero-title-line-heigh);
  font-family   : "Poppins", sans-serif;
  text-shadow   : 0 2px 10px rgba(0, 0, 0, 0.6);
}

.sub-main-title {
  color      : var(--primary-color);
  font-family: cursive;
  font-weight: var(--fw-bold);
  font-style : italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons styling */

.new-navbar-btn:hover {
  background: var(--primary-dark);
  color     : var(--white-color);
  transform : translateY(-2px);
}

.new-navbar-btn.secondary {
  background: transparent;
  border    : 2px solid var(--primary-color);
}

.new-navbar-btn.secondary:hover {
  background: var(--primary-color);
  color     : var(--white-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .new-navbar-btn {
    padding  : 10px 22px;
    font-size: var(--fs-small-desc);
  }
}

#hero-banner {
  position: var(--position-relative);
  overflow: hidden;
}

.video-container {
  position: var(--position-relative);
  width   : 100%;
  height  : 100vh;
}

.hero-video {
  position  : absolute;
  top       : 0;
  left      : 0;
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  z-index   : 0;
}

.video-overlay {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
  height  : 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.hero-content {
  position : absolute;
  top      : 50%;
  left     : 50%;
  transform: translate(-50%, -50%);
  z-index  : 2;
}

.bottom-image {
  position: absolute;
  bottom  : -10px;
  left    : 0;
  width   : 100%;
  z-index : 3;
}

.bottom-image img {
  width         : 100%;
  display       : var(--d-block);
  pointer-events: none;
  position      : var(--position-relative);
  top           : 3px;
}

/* End home hero banner  */

/* home start Four Companies, One Unified Vision */

.company-hero-section {
  position             : var(--position-relative);
  background           : url("./assets/img/bg-img/hero-img1.png") no-repeat center center/cover;
  padding              : 60px 0;
  min-height           : 400px;
  display              : var(--d-flex);
  align-items          : var(--align-center);
  justify-content      : center;
  background-attachment: fixed;
}

.company-hero-section .hero-contents {
  position: var(--position-relative);
  z-index : 2;
}

.company-hero-section .hero-overlay {
  position       : absolute;
  inset          : 0;
  background     : rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.company-hero-section .hero-contents {
  position: var(--position-relative);
  z-index : 2;
}

@media (max-width: 1030px) {
  .Four-Companie-container {
    flex-wrap: wrap;
    padding  : 0 1rem;
  }
}

@media (max-width: 1024px) {
  .Four-Companie-container {
    gap: 20px;
  }
}

.Four-Companie-container {
  display        : var(--d-flex);
  justify-content: center;
  gap            : 30px;
  max-width      : 1350px;
  margin         : auto;
}

@media (max-width: 1024px) {
  .Four-Companie-card {
    flex     : 1 1 45%;
    max-width: 100%;
  }
}

.Four-Companie-card {
  background    : var(--white-color);
  padding       : 30px 25px;
  border-radius : var(--radius-sm);
  box-shadow    : 0 10px 20px rgba(0, 0, 0, 0.1);
  flex          : 1 1 300px;
  max-width     : 350px;
  display       : var(--d-flex);
  flex-direction: column;
  align-items   : flex-start;
}

.four-comapny-logo {
  width : 60px;
  height: 60px;
}

.Four-Companie-card h2 {
  font-size    : 1.25rem;
  margin-bottom: 15px;
  font-weight  : var(--fw-bold);
  display      : var(--d-flex);
  align-items  : var(--align-center);
  color        : var(--text-black);
}

/* home End Four Companies, One Unified Vision */

/* package details page style  */
/* =========================
   PACKAGE HERO SLIDER
========================= */
.package-container {
  max-width: 1200px;
  margin   : 0 auto;
  padding  : 20px;
}

/* Image Slider Styles */
.package-slider-container {
  position     : var(--position-relative);
  width        : 100%;
  height       : 500px;
  overflow     : hidden;
  border-radius: var(--radius-sm);
  box-shadow   : 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.package-slider-wrapper {
  display   : var(--d-flex);
  transition: transform 0.5s ease-in-out;
  height    : 100%;
}

.package-slide {
  min-width: 100%;
  height   : 100%;
}

.package-slide-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
}

.package-slider-btn {
  position     : absolute;
  top          : 50%;
  transform    : translateY(-50%);
  background   : rgba(255, 255, 255, 0.9);
  border       : none;
  width        : 50px;
  height       : 50px;
  border-radius: 50%;
  cursor       : pointer;
  font-size    : 20px;
  color        : var(--text-dark);
  transition   : all 0.3s;
  z-index      : 10;
  box-shadow   : 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-slider-btn:hover {
  background: white;
  transform : translateY(-50%) scale(1.1);
}

.package-slider-btn-left {
  left: 20px;
}

.package-slider-btn-right {
  right: 20px;
}

/* Main Content Grid */
.package-content-grid {
  display              : grid;
  grid-template-columns: 2fr 1fr;
  gap                  : 30px;
  margin-top           : 30px;
}

/* Left Column Styles */
.package-main-content {
  background   : white;
  padding      : 40px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 2px 15px rgba(0, 0, 0, 0.08);
}

.package-subsection-title {
  color    : var(--primary-color);
  font-size: 20px;
  margin   : 0 0 15px;
}

.package-text {
  margin-bottom: 15px;
  color        : var(--text-light);
  line-height  : 1.8;
}

.package-highlight {
  color: var(--primary-color);
}

/* Two Column Images */
.package-image-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 20px;
  margin               : 30px 0;
}

.package-grid-img {
  width        : 100%;
  height       : 250px;
  object-fit   : cover;
  border-radius: var(--radius-sm);
  box-shadow   : 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Quick Facts Box */
.package-quick-facts {
  background   : linear-gradient(135deg, #fef0f0 0%, #e8b8b8 100%);
  padding      : 25px;
  border-radius: var(--radius-sm);
  margin       : 25px 0;
  border-left  : 4px solid var(--primary-color);
}

.package-quick-facts .package-text {
  margin-bottom: 10px;
}

/* Itinerary List */
.package-itinerary-list {
  list-style: none;
  padding   : 0;
  margin    : 20px 0;
}

.package-itinerary-item {
  background   : var(--bg-light);
  padding      : 15px 20px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  border-left  : 4px solid var(--primary-color);
  transition   : all 0.3s;
}

.package-itinerary-item:hover {
  background: #fef0f0;
  transform : translateX(5px);
}

/* Inclusions/Exclusions Lists */
.package-feature-list {
  margin      : 15px 0;
  padding-left: 25px;
}

.package-feature-item {
  margin-bottom: 8px;
  color        : var(--text-light);
}

/* FAQ Styles */
.package-faq-section {
  margin-top: 40px;
}

.package-faq-item {
  background   : white;
  border       : 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  overflow     : hidden;
}

.package-faq-question {
  width      : 100%;
  padding    : 18px 50px 18px 20px;
  background : #f3f3f3;
  border     : none;
  text-align : left;
  cursor     : pointer;
  position   : var(--position-relative);
  transition : all 0.3s;
  font-weight: var(--fw-bold);
}

.package-faq-question:hover {
  background: var(--bg-light);
}

.package-faq-icon {
  position  : absolute;
  right     : 20px;
  top       : 50%;
  transform : translateY(-50%);
  font-size : 24px;
  transition: transform 0.3s;
}

.package-faq-item.active .package-faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

.package-faq-answer {
  max-height: 0;
  overflow  : hidden;
  padding   : 0 20px;
  background: white;
  transition: max-height 0.3s ease;
}

.package-faq-item.active .package-faq-answer {
  max-height: 500px;
  /* adjust if needed */
}

.package-faq-item.active .package-faq-answer {
  max-height: 500px;
  padding   : 20px;
}

/* Right Sidebar */
.package-sidebar {
  position: sticky;
  top     : 20px;
  height  : fit-content;
}

.package-info-card {
  background   : white;
  padding      : 30px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.package-info-title {
  color        : var(--primary-color);
  font-size    : 22px;
  margin-bottom: 20px;
  text-align   : center;
}

.package-info-text {
  padding      : 12px 0;
  border-bottom: 1px solid #eee;
}

.package-info-text:last-child {
  border-bottom: none;
}

.package-info-label {
  color      : var(--primary-color);
  display    : inline-block;
  min-width  : 120px;
  font-weight: bold;
}

/* Map */
.package-map-container {
  border-radius: var(--radius-sm);
  overflow     : hidden;
  box-shadow   : 0 2px 15px rgba(0, 0, 0, 0.08);
}

.package-map-iframe {
  width : 100%;
  height: 300px;
  border: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .package-content-grid {
    grid-template-columns: 1fr;
  }

  .package-slider-container {
    height: 350px;
  }

  .package-main-content {
    padding: 25px;
  }

  .package-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .package-slider-container {
    height: 250px;
  }

  .package-slider-btn {
    width    : 40px;
    height   : 40px;
    font-size: var(--fs-section-desc);
  }
}

/* perent group four details pages */
.dc-travel-showcase {
  position  : var(--position-relative);
  overflow  : hidden;
  min-height: 100vh;
}

/* Background Shapes */
.dc-bg-shape {
  position     : absolute;
  border-radius: 50%;
  opacity      : 0.1;
}

.dc-shape-1 {
  width     : 500px;
  height    : 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top       : -200px;
  right     : -100px;
  animation : dc-float-1 20s ease-in-out infinite;
}

.dc-shape-2 {
  width     : 400px;
  height    : 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom    : -150px;
  left      : -100px;
  animation : dc-float-2 15s ease-in-out infinite;
}

@keyframes dc-float-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

@keyframes dc-float-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, -30px) scale(1.15);
  }
}

.dc-container-fluid {
  max-width: 1400px;
  margin   : 0 auto;
  position : var(--position-relative);
  z-index  : 2;
}

.dc-inner-container {
  background     : rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius  : 30px;
  padding        : 30px;
  border         : 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Header */
.dc-top-header {
  text-align   : center;
  margin-bottom: 30px;
}

/* Main Card */
.dc-card-main {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(240, 240, 240, 0.95) 100%);
  padding      : 20px;
  border-radius: var(--radius-sm);
  box-shadow   : 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Brand Section */
.dc-brand-section {
  text-align   : center;
  margin-bottom: 20px;
}

.dc-company-heading {
  color: var(--primary-color);
}

.dc-divider-line {
  width        : 100px;
  height       : 4px;
  background   : var(--primary-color);
  margin       : 0 auto 15px;
  border-radius: var(--radius-sm);
}

.dc-slogan {
  color     : var(--text-light);
  font-style: italic;
}

/* Content Grid */
.dc-content-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 20px;
  margin-bottom        : 20px;
}

.dc-info-card {
  background   : white;
  padding      : 25px;
  border-radius: 20px;
  box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
  transition   : all 0.4s ease;
  border       : 2px solid transparent;
}

.dc-info-card:hover {
  transform   : translateY(-10px);
  box-shadow  : 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.dc-card-special {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  border    : 2px solid #4b7122;
}

.dc-card-icon {
  font-size    : 48px;
  margin-bottom: 15px;
}

.dc-card-title {
  font-size    : 24px;
  font-weight  : var(--fw-bold);
  color        : var(--text-black);
  margin-bottom: 15px;
}

.dc-bottom-info {
  margin-bottom: 40px;
}

.dc-expertise-box {
  background   : linear-gradient(135deg, var(--primary-light) -20%, #fdfffc 100%);
  padding      : 35px;
  border-radius: 20px;
  display      : var(--d-flex);
  align-items  : flex-start;
  gap          : 25px;
  box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dc-icon-badge {
  font-size  : 50px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .dc-inner-container {
    padding: 40px;
  }

  .dc-card-main {
    padding: 35px;
  }

  .dc-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dc-travel-showcase {
    padding: 80px 15px;
  }

  .dc-inner-container {
    padding: 25px;
  }

  .dc-card-main {
    padding: 25px;
  }

  .dc-emoji-large {
    font-size: 60px;
  }

  .dc-expertise-box {
    flex-direction: column;
    text-align    : center;
  }

  .dc-btn-primary {
    padding  : 16px 40px;
    font-size: var(--fs-section-desc);
  }
}

@media (max-width: 480px) {

  .dc-card-title {
    font-size: 20px;
  }
}

.dc-insurance-container {
  width  : 100%;
  padding: 0 15px;
}

.dc-insurance-wrapper {
  max-width: 1400px;
  margin   : 0 auto;
}

.dc-insurance-spacing-top {
  margin-top: 80px;
}

.dc-insurance-spacing-bottom {
  margin-bottom: 80px;
}

.dc-insurance-row {
  display  : var(--d-flex);
  flex-wrap: wrap;
  margin   : 0 -15px;
}

.dc-insurance-col {
  width: 100%;
}

.dc-insurance-heading {
  position: var(--position-relative);
}

.dc-insurance-heading::after {
  content      : "";
  position     : absolute;
  bottom       : -10px;
  left         : 50%;
  transform    : translateX(-50%);
  width        : 100px;
  height       : 4px;
  background   : var(--primary-color);
  border-radius: var(--radius-sm);
}

.dc-insurance-description {
  margin-bottom: 60px;
  max-width    : 700px;
  margin       : auto;
}

/* DC Swiper Container */
.dc-insurance-slider {
  width   : 100%;
  padding : 20px 0 20px;
  overflow: hidden;
}

.dc-insurance-slider-wrapper {
  display    : var(--d-flex);
  align-items: stretch;
}

.dc-insurance-slide {
  width      : 380px;
  height     : auto;
  flex-shrink: 0;
}

/* DC Insurance Card */
.dc-insurance-card {
  position           : var(--position-relative);
  height             : 500px;
  border-radius      : 20px;
  overflow           : hidden;
  background-size    : cover;
  background-position: center;
  transition         : all 0.4s ease;
  cursor             : pointer;
}

.dc-insurance-card::before {
  content : "";
  position: absolute;
  top     : 0;
  left    : 0;
  right   : 0;
  bottom  : 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  transition: all 0.4s ease;
}

.dc-insurance-card:hover {
  transform : translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.dc-insurance-card:hover::before {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.9) 100%);
}

.dc-insurance-card-content {
  position: var(--position-relative);
  z-index : 2;
  padding : 40px;
  height  : 100%;
  color   : var(--bg-light);
}

.dc-insurance-card-title {
  color      : var(--bg-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dc-insurance-card-text {
  color      : rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* DC Swiper Pagination */
.dc-insurance-pagination .swiper-pagination-bullet {
  width     : 12px;
  height    : 12px;
  background: #667eea;
  opacity   : 0.4;
  transition: all 0.3s ease;
}

.dc-insurance-pagination .swiper-pagination-bullet-active {
  opacity      : 1;
  width        : 30px;
  border-radius: var(--radius-sm);
  background   : var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dc-insurance-spacing-top {
    margin-top: 50px;
  }

  .dc-insurance-spacing-bottom {
    margin-bottom: 50px;
  }

  .dc-insurance-slide {
    width: 320px;
  }

  .dc-insurance-card {
    height: 450px;
  }
}

@media (max-width: 480px) {
  .dc-insurance-slide {
    width: 280px;
  }

  .dc-insurance-card {
    height: 400px;
  }

  .dc-insurance-card-content {
    padding: 25px;
  }
}

.destination-card {
  background   : var(--white-color);
  border-radius: var(--radius-sm);
  box-shadow   : 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow     : hidden;
  transition   :
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  transform : translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  width     : 100%;
  height    : 250px;
  object-fit: cover;
  display   : var(--d-block);
}

.card-body {
  padding: 20px;
}

/* map */
.map-section {
  padding    : 40px 8%;
  text-align : center;
  font-family: system-ui, sans-serif;
}

.map-section h2 {
  font-size    : 42px;
  font-weight  : var(--fw-regular);
  margin-bottom: 20px;
}

.map-section p {
  color        : var(--text-light);
  margin-bottom: 50px;
}

/* MAP */
#map {
  height       : 70vh;
  width        : 100%;
  border-radius: 14px;
  touch-action : pan-x pan-y;
  cursor       : pointer;
}

#map:active {
  cursor: grabbing;
}

.region-label {
  background    : none !important;
  border        : none !important;
  box-shadow    : none !important;
  color         : var(--text-black) !important;
  font-size     : 11px !important;
  letter-spacing: 2px !important;
  font-weight   : 500 !important;
}

.leaflet-tooltip-top::before {
  border-top-color: var(--bg-light) !important;
}

.leaflet-interactive:hover {
  filter: drop-shadow(0 0 4px rgba(104, 159, 56, 0.6));
}

@media (max-width: 767px) {

  .btn-mobile-column {
    flex-direction: column;
    align-items   : var(--align-center);
  }

  .btn-mobile-column .new-navbar-btn {
    margin-right: 0 !important;
  }

  .btn-mobile-column .new-navbar-btn.secondary {
    margin-top: 12px;
  }

  .discover-section {
    padding-left : 20px;
    padding-right: 20px;
  }

  .trip-card {
    margin-top: 20px;
  }

  section.guiding-principles {
    padding: 60px 0px;
  }

  .adventure-travel {
    left: -2%;
  }

  .values-that-unite-section {
    margin-bottom: 0;
  }

  .package-info-card,
  .package-main-content {
    padding: 10px;
  }

  .dc-group-container {
    margin: 20px;
  }

  .dc-group-cards {
    grid-template-columns: none;
  }

  .dc-travel-showcase {
    padding: 50px 15px;
  }

  .dc-inner-container {
    padding: 0;
  }

  .dc-card-main {
    padding: 10px;
  }

  .dc-expertise-box,
  .dc-info-card {
    padding: 15px;
  }
}

/* package list page card design */
.packagelist-section-header {
  margin: 30px 0;
}

.packagelist-section-header span {
  display       : inline-block;
  color         : var(--primary-color);
  font-size     : 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h3 em {
  font-family: 'Playfair Display', serif;
  color      : var(--primary-color);
  font-style : italic;
}

/* Cards Grid */
.packagelist-grid {
  max-width            : 1200px;
  margin               : 0 auto;
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 28px;
}

@media (max-width: 900px) {
  .packagelist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .packagelist-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.packagelist-card {
  background    : #1a1a1a;
  border-radius : var(--radius-sm);
  overflow      : hidden;
  border        : 1px solid rgba(255, 255, 255, 0.08);
  display       : flex;
  flex-direction: column;
  transition    : transform 0.35s ease, box-shadow 0.35s ease;
  cursor        : pointer;
}

.packagelist-card:hover {
  transform : translateY(-8px);
  box-shadow: 0 24px 60px rgba(230, 48, 48, 0.25);
}

.packagelist-card-img {
  position: relative;
  height  : 220px;
  overflow: hidden;
}

.packagelist-card-img img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter    : grayscale(20%);
}

.packagelist-card:hover .packagelist-card-img img {
  transform: scale(1.07);
  filter   : grayscale(0%);
}

.packagelist-card-badge {
  position      : absolute;
  top           : 14px;
  left          : 14px;
  background    : var(--primary-color);
  color         : var(--white-color);
  font-size     : 10px;
  font-weight   : 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding       : 5px 12px;
  border-radius : 20px;
}

.packagelist-card-overlay {
  position  : absolute;
  bottom    : 0;
  left      : 0;
  right     : 0;
  height    : 80px;
  background: linear-gradient(to top, #1a1a1a, transparent);
}

.packagelist-card-body {
  padding       : 22px 22px 18px;
  flex          : 1;
  display       : flex;
  flex-direction: column;
}

.packagelist-card-tag {
  font-size     : 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color         : var(--primary-color);
  margin-bottom : 8px;
  font-weight   : 700;
}

.packagelist-card-title {
  color        : var(--white-color);
  font-size    : 20px;
  line-height  : 1.3;
  margin-bottom: 10px;
}

.packagelist-card-route {
  color        : #aaaaaa;
  font-size    : 12px;
  line-height  : 1.6;
  flex         : 1;
  margin-bottom: 18px;
}

.packagelist-card-route a {
  color      : #aaaaaa;
  font-size  : 12px;
  line-height: 1.6;
  flex       : 1;
}

.packagelist-card-footer {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  border-top     : 1px solid rgba(255, 255, 255, 0.08);
  padding-top    : 16px;
  gap            : 10px;
}

.packagelist-card-meta {
  display       : flex;
  flex-direction: column;
  gap           : 4px;
}

.packagelist-card-duration {
  font-size     : 11px;
  color         : #aaaaaa;
  letter-spacing: 1px;
}

.packagelist-card-price {
  font-family: 'Playfair Display', serif;
  color      : var(--primary-color);
  font-size  : 15px;
}

.packagelist-card-btn {
  background    : var(--primary-color);
  color         : var(--white-color);
  border        : none;
  padding       : 10px 20px;
  border-radius : 25px;
  font-size     : 11px;
  font-weight   : 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor        : pointer;
  transition    : background 0.2s, transform 0.2s;
  white-space   : nowrap;
}

.packagelist-card-btn:hover {
  background: var(--white-color);
  color     : var(--primary-color);
  transform : scale(1.05);
}

/* Fade-up animation */
@keyframes packagelist-fadeUp {
  from {
    opacity  : 0;
    transform: translateY(30px);
  }

  to {
    opacity  : 1;
    transform: translateY(0);
  }
}

.packagelist-card:nth-child(1) {
  animation: packagelist-fadeUp 0.6s ease 0.1s both;
}

.packagelist-card:nth-child(2) {
  animation: packagelist-fadeUp 0.6s ease 0.25s both;
}

.packagelist-card:nth-child(3) {
  animation: packagelist-fadeUp 0.6s ease 0.4s both;
}

.country-info .row {
  display  : flex !important;
  flex-wrap: wrap !important;
}

.country-info [class*="col-"] {
  display: flex !important;
}

.country-info-item {
  display    : flex;
  align-items: flex-start;
  gap        : 10px;
  width      : 100%;
  height     : 100%;
}

@media (max-width: 767px) {

  .country-info .row {
    row-gap: 20px;
  }

  .country-info-item {
    padding: 10px;
  }
}

.testimonial-section {
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 0 40px 20px;
}
/* Your Desktop Styles */
.testimonial-main {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .testimonial-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .testimonial-main .left {
    order: 2;
  }

  .testimonial-main img, 
  .testimonial-main .right {
    order: 1;
  }
}

/* LEFT SIDE */
.testimonial-left {
  padding-right: 20px;
}

.subtext {
  font-size    : 15px;
  color        : #7a8ea0;
  line-height  : 1.7;
  max-width    : 480px;
  margin-bottom: 20px;
}

/* TESTIMONIAL CARD */
.testimonial-wrapper {
  position  : relative;
  overflow  : hidden;
  min-height: 200px;
}

.testimonial-card {
  display       : none;
  background    : #f7fbff;
  border-radius : 12px;
  padding       : 28px 28px 28px 20px;
  flex-direction: row;
  gap           : 24px;
  align-items   : flex-start;
  animation     : fadeSlideIn 0.5s ease forwards;
  
}

.testimonial-card.active {
  display: flex;
}

@keyframes fadeSlideIn {
  from {
    opacity  : 0;
    transform: translateX(30px);
  }

  to {
    opacity  : 1;
    transform: translateX(0);
  }
}

.avatar-wrap {
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 10px;
  flex-shrink   : 0;
  flex: 0 0 30%; /* Fixed 30% width */
  max-width: 30%;
}

.avatar {
  width          : 90px;
  height         : 90px;
  border-radius  : 10px;
  object-fit     : cover;
  background     : #dde8f0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 36px;
  overflow       : hidden;
}

.avatar-img {
  width        : 100%;
  height       : 100%;
  object-fit   : cover;
  border-radius: 10px;
}

.avatar-name {
  font-weight: 600;
  font-size  : 15px;
  color      : #0f2a4a;
  text-align : center;
}

.avatar-role {
  font-size     : 12px;
  color         : var(--primary-color);
  font-weight   : 500;
  text-align    : center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-body {
  flex: 1;
  flex: 0 0 70%; /* Fixed 70% width */
  max-width: 70%;
}

.quote-text {
  font-family  : 'Playfair Display', serif;
  font-style   : italic;
  font-size    : 18px;
  color        : #0f2a4a;
  margin-bottom: 14px;
  line-height  : 1.5;
}

.quote-body p {
  font-size  : 14px;
  color      : #7a8ea0;
  line-height: 1.7;
}

/* DOTS */
.testimonial-dots {
  display    : flex;
  gap        : 10px;
  margin-top : 10px;
  align-items: center;
}

.dot {
  width        : 12px;
  height       : 12px;
  border-radius: 50%;
  background   : #c8dce8;
  border       : none;
  cursor       : pointer;
  transition   : background 0.3s, transform 0.3s;
  padding      : 0;
}

.dot.active {
  background: var(--primary-color);
  transform : scale(1.3);
}

/* RIGHT SIDE - IMAGE */
.testimonial-right {
  position       : relative;
  display        : flex;
  justify-content: flex-end;
  z-index        : 1;
}

.image-frame {
  position     : relative;
  width        : 100%;
  max-width    : 460px;
  border-radius: 18px;
  overflow     : visible;
  /* IMPORTANT */
  box-shadow   : 0 30px 70px rgba(15, 42, 74, 0.12);
  z-index      : 2;
}

.image-frame img {
  width        : 100%;
  height       : 500px;
  object-fit   : cover;
  display      : block;
  border-radius: 18px;
  position     : relative;
  z-index      : 1;
}

/* Quote icon always above image */
.quote-badge {
  position       : absolute;
  bottom         : 30px;
  left           : -30px;
  width          : 68px;
  height         : 68px;
  background     : var(--primary-color);
  border-radius  : 50%;
  display        : flex;
  align-items    : center;
  justify-content: center;
  box-shadow     : 0 8px 24px rgba(45, 212, 191, 0.4);
  z-index        : 5;
  /* Higher than image */
}

.quote-badge svg {
  width : 32px;
  height: 32px;
  fill  : white;
}

.country-details-slider-wrap {
  position: relative;
  width   : 100%;
  padding : 0 14px;
}

.country-details-slider-overflow {
  overflow     : hidden;
  border-radius: 16px;
}

.country-details-slider-track {
  display    : flex;
  gap        : 16px;
  transition : transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* ── SLIDE ── */
.country-details-slider-slide {
  flex         : 0 0 calc((90% - 16px * 2) / 3);
  aspect-ratio : 4 / 4;
  border-radius: 14px;
  overflow     : hidden;
  position     : relative;
}

.country-details-slider-slide img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
  transition: transform 0.5s ease;
}

.country-details-slider-slide:hover img {
  transform: scale(1.05);
}

/* ── ARROWS ── */
.country-details-slider-arrow {
  position       : absolute;
  top            : 50%;
  transform      : translateY(-50%);
  width          : 48px;
  height         : 48px;
  border-radius  : 50%;
  background     : #fff;
  border         : none;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  z-index        : 10;
  box-shadow     : 0 4px 20px rgba(0, 0, 0, 0.25);
  transition     : background 0.2s, transform 0.2s;
}

.country-details-slider-arrow:hover {
  background: var(--primary-color);
  transform : translateY(-50%) scale(1.1);
}

.country-details-slider-arrow:hover svg {
  stroke: #fff;
}

.country-details-slider-arrow svg {
  width          : 20px;
  height         : 20px;
  stroke         : #0f2a4a;
  stroke-width   : 2.5;
  fill           : none;
  stroke-linecap : round;
  stroke-linejoin: round;
}

.country-details-slider-arrow-prev {
  left: 8px;
}

.country-details-slider-arrow-next {
  right: 8px;
}

.country-details-slider-arrow:disabled {
  opacity       : 0.3;
  pointer-events: none;
}

/* ── DOTS ── */
.country-details-slider-dots {
  display        : flex;
  justify-content: center;
  gap            : 8px;
  margin-top     : 18px;
  margin-bottom  : 18px;
}

.country-details-slider-dot {
  width        : 8px;
  height       : 8px;
  border-radius: 50%;
  background   : rgba(219, 71, 71, 0.3);
  border       : none;
  cursor       : pointer;
  transition   : background 0.3s, width 0.3s, border-radius 0.3s;
}

.country-details-slider-dot-active {
  background   : var(--primary-color);
  width        : 26px;
  border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .country-details-slider-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 560px) {
  .country-details-slider-wrap {
    padding: 0;
  }

  .country-details-slider-slide {
    flex        : 0 0 100%;
    aspect-ratio: 4 / 3;
  }

  .country-details-slider-arrow {
    width : 36px;
    height: 36px;
  }

  .country-details-slider-arrow svg {
    width : 16px;
    height: 16px;
  }
}

/* <!-- start Why Travel With DC Group --> */
/* SECTION */

.why-travel-dc-section {
  padding   : 80px 0;
  background: #ffffff;
}

.why-travel-dc-wrap {
  max-width            : 1100px;
  margin               : 0 auto;
  padding              : 0 24px;
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 64px;
  align-items          : center;
}

.why-travel-dc-desc {
  font-size    : 15px;
  color        : #555;
  line-height  : 1.75;
  margin-bottom: 28px;
}

.why-travel-dc-stat {
  background   : #f9f9f9;
  border-left  : 4px solid #FF0000;
  border-radius: 0 10px 10px 0;
  padding      : 18px 20px;
  display      : inline-block;
}

.why-travel-dc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size  : 30px;
  font-weight: 700;
}

.why-travel-dc-stat-label {
  font-size: 13px;
  color    : #777;
}

/* RIGHT GRID */

.why-travel-dc-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 16px;
}

.why-travel-dc-card {
  background   : #ffffff;
  border       : 1px solid #e8e8e8;
  border-radius: 14px;
  padding      : 22px;
  transition   : .25s;
}

.why-travel-dc-card:hover {
  border-color: #FF0000;
  transform   : translateY(-4px);
  box-shadow  : 0 8px 24px rgba(192, 57, 43, .08);
}

.why-travel-dc-icon {
  width          : 44px;
  height         : 44px;
  border-radius  : 10px;
  background     : #FCEBEB;
  color          : #FF0000;
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin-bottom  : 14px;
  transition     : .25s;
}

.why-travel-dc-card:hover .why-travel-dc-icon {
  background: #FF0000;
  color     : #fff;
}

.why-travel-dc-card-title {
  font-size    : 15px;
  font-weight  : 600;
  margin-bottom: 6px;
}

.why-travel-dc-card-desc {
  font-size  : 13px;
  color      : #666;
  line-height: 1.65;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .why-travel-dc-wrap {
    grid-template-columns: 1fr;
    gap                  : 40px;
  }

  .why-travel-dc-title {
    font-size: 28px;
  }

}

@media(max-width:480px) {

  .why-travel-dc-grid {
    grid-template-columns: 1fr;
  }

}

/* <!-- end Why Travel With DC Group --> */
/* =============================================
       TRAVEL GALLERY – ALL CLASSES START WITH Travel-Gallery-
       ============================================= */

.Travel-Gallery-section {
  padding   : 50px 0;
  background: var(--bg-light);
}

/* Header */
.Travel-Gallery-header {
  text-align   : center;
  margin-bottom: 36px;
}

.Travel-Gallery-desc {
  font-size  : var(--fs-section-desc);
  color      : var(--text-light);
  line-height: var(--lh-medium);
  max-width  : 520px;
  margin     : 0 auto;
}

/* Grid */
.Travel-Gallery-grid {
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows       : 180px;
  gap                  : 14px;
}

.Travel-Gallery-item {
  position     : var(--position-relative);
  border-radius: var(--radius-sm);
  overflow     : hidden;
  cursor       : pointer;
  transition   : transform 0.28s ease, box-shadow 0.28s ease;
}

.Travel-Gallery-item:hover {
  transform : translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.12);
}

.Travel-Gallery-item:hover .Travel-Gallery-img {
  transform: scale(1.05);
}

.Travel-Gallery-item--tall {
  grid-row: span 2;
}

.Travel-Gallery-item--wide {
  grid-column: span 2;
}

/* Image */
.Travel-Gallery-img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
  transition: transform 0.4s ease;
}

/* CTA */
.Travel-Gallery-cta {
  text-align: center;
  margin-top: 44px;
}

.Travel-Gallery-btn {
  display        : inline-flex;
  align-items    : var(--align-center);
  gap            : 10px;
  padding        : 14px 36px;
  background     : var(--primary-color);
  color          : var(--white-color);
  border         : none;
  border-radius  : 999px;
  font-family    : 'DM Sans', sans-serif;
  font-size      : var(--fs-section-desc);
  font-weight    : var(--fw-semibold);
  cursor         : pointer;
  text-decoration: var(--text-decoration-none);
  transition     : background 0.22s ease, transform 0.22s ease;
}

.Travel-Gallery-btn:hover {
  background: var(--primary-dark);
  transform : translateY(-3px);
}

.Travel-Gallery-btn svg {
  transition: transform 0.22s ease;
}

.Travel-Gallery-btn:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .Travel-Gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows       : 160px;
  }

  .Travel-Gallery-item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .Travel-Gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows       : 130px;
  }

  .Travel-Gallery-item--tall {
    grid-row: span 1;
  }

  .Travel-Gallery-title {
    font-size: 24px;
  }
}

/* end TRAVEL GALLERY – ALL CLASSES START WITH Travel-Gallery- */

/* =============================================
       WHAT WE DO SECTION
       ============================================= */

.wwd-section {
  padding   : 80px 0;
  background: var(--bg-light);
}


/* Two-block layout */
.wwd-blocks {
  display              : grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap                  : 0;
  border               : 1px solid var(--border-color);
  border-radius        : 16px;
  overflow             : hidden;
}

.wwd-block {
  padding : 48px 40px;
  position: var(--position-relative);
}

.wwd-block {
  border-left: 1px solid var(--border-color);
}

.wwd-block:first-child {
  border-left: none;
}

.wwd-block:last-child {
  background: var(--bg-light);
}

.wwd-block-num {
  font-family  : 'Playfair Display', serif;
  font-size    : 64px;
  font-weight  : var(--fw-bold);
  color        : var(--primary-color);
  opacity      : 0.12;
  line-height  : 1;
  margin-bottom: -16px;
  display      : block;
}

.wwd-block-icon {
  width          : 48px;
  height         : 48px;
  border-radius  : 12px;
  background     : #FCEBEB;
  display        : flex;
  align-items    : center;
  justify-content: center;
  color          : var(--primary-color);
  margin-bottom  : 20px;
}

.wwd-block-title {
  font-family: 'Playfair Display', serif;
  font-size  : var(--fs-section-subtitle);
  font-weight: var(--fw-bold);
  color      : var(--text-black);
  line-height: 1.3;
  margin     : 0 0 14px;
}

.wwd-block-divider {
  width        : 40px;
  height       : 3px;
  background   : var(--primary-color);
  border-radius: 999px;
  margin       : 18px 0;
}

.wwd-block-desc {
  font-size  : var(--fs-section-desc);
  color      : var(--text-light);
  line-height: var(--lh-large);
  margin     : 0;
}

/* Responsive */
@media (max-width: 700px) {
  .wwd-blocks {
    grid-template-columns: 1fr;
  }

  .wwd-block:first-child {
    border-right : none;
    border-bottom: 1px solid var(--border-color);
  }

  .wwd-block {
    padding: 32px 24px;
  }
}

/* =============================================
       FOUNDER SECTION — ALL CLASSES START WITH Founder-
       ============================================= */

.Founder-section {
  padding   : 80px 0;
  background: var(--bg-light);
}

.Founder-container {
  max-width: 1100px;
  margin   : 0 auto;
  padding  : 0 24px;
}

/* ── Intro Row ── */
.Founder-intro {
  display              : grid;
  grid-template-columns: 380px 1fr;
  gap                  : 64px;
  align-items          : center;
  margin-bottom        : 20px;
}

/* Avatar */
.Founder-avatar-wrap {
  position: var(--position-relative);
}

.Founder-avatar-box {
  width        : 100%;
  aspect-ratio : 4/6;
  border-radius: 16px;
  background   : linear-gradient(145deg, #b9d5f0 0%, #7fb8e8 100%);
  overflow     : hidden;
  position     : relative;
}

.Founder-avatar-box img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
  display   : block;
}

.Founder-avatar-label {
  position     : absolute;
  bottom       : 0;
  left         : 0;
  right        : 0;
  padding      : 20px 24px;
  background   : linear-gradient(to top, #ff000044, transparent);
  border-radius: 0 0 16px 16px;
}

.Founder-avatar-name {
  font-family: 'Playfair Display', serif;
  font-size  : 20px;
  font-weight: var(--fw-bold);
  color      : var(--white-color);
  margin     : 0 0 2px;
}

.Founder-avatar-role {
  font-size     : 12px;
  font-weight   : var(--fw-semibold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color         : rgba(255, 255, 255, 0.7);
}

/* Floating Est badge */
.Founder-est-badge {
  position       : absolute;
  top            : -14px;
  right          : -14px;
  width          : 76px;
  height         : 76px;
  border-radius  : 50%;
  background     : var(--primary-color);
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  box-shadow     : 0 4px 20px rgba(192, 57, 43, 0.35);
}

.Founder-est-badge span:first-child {
  font-size     : 9px;
  font-weight   : var(--fw-semibold);
  letter-spacing: 1px;
  text-transform: uppercase;
  color         : rgba(255, 255, 255, 0.75);
}

.Founder-est-badge span:last-child {
  font-family: 'Playfair Display', serif;
  font-size  : 18px;
  font-weight: var(--fw-bold);
  color      : var(--white-color);
  line-height: 1;
}

/* Content */
.Founder-content {
  padding-top: 8px;
}

.Founder-subheading {
  font-family: 'Playfair Display', serif;
  font-size  : clamp(16px, 1.5vw, 19px);
  font-weight: var(--fw-regular);
  font-style : italic;
  color      : var(--primary-color);
  margin     : 0 0 24px;
}

.Founder-para {
  font-size  : var(--fs-medium-desc);
  color      : var(--text-light);
  line-height: var(--lh-large);
  margin     : 0 0 16px;
}

.Founder-para:last-of-type {
  margin-bottom: 0;
}

.Founder-quote {
  margin-top   : 15px;
  padding      : 15px 24px;
  border-left  : 4px solid var(--primary-color);
  background   : var(--white-color);
  border-radius: 0 10px 10px 0;
}

.Founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size  : clamp(15px, 1.3vw, 17px);
  font-style : italic;
  color      : var(--text-dark);
  line-height: var(--lh-medium);
  margin     : 0;
}

/* ── Timeline ── */
.Founder-timeline {
  position             : var(--position-relative);
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  gap                  : 0;
  border               : 1px solid var(--border-color);
  border-radius        : 16px;
  overflow             : hidden;
  background           : var(--white-color);
}

.Founder-timeline-item {
  padding     : 32px 28px;
  border-right: 1px solid var(--border-color);
  position    : var(--position-relative);
  transition  : background 0.25s;
}

.Founder-timeline-item:last-child {
  border-right: none;
}

.Founder-timeline-item:hover {
  background: #fff9f9;
}

.Founder-timeline-year {
  font-family  : 'Playfair Display', serif;
  font-size    : 32px;
  font-weight  : var(--fw-bold);
  color        : var(--primary-color);
  opacity      : 0.18;
  line-height  : 1;
  margin-bottom: -8px;
}


.Founder-timeline-title {
  font-size  : 13px;
  font-weight: var(--fw-semibold);
  color      : var(--text-black);
  margin     : 15px 0 8px;
  line-height: 1.3;
}

.Founder-timeline-desc {
  font-size  : 12px;
  color      : var(--text-light);
  line-height: var(--lh-medium);
  margin     : 0;
}

/* =============================================
       RESPONSIVE
       ============================================= */
@media (max-width: 760px) {
  .Founder-intro {
    grid-template-columns: 1fr;
    gap                  : 40px;
  }

  .Founder-avatar-box {
    aspect-ratio: 4 / 6;
  }

  .Founder-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .Founder-timeline-item:nth-child(2) {
    border-right: none;
  }

  .Founder-timeline-item:nth-child(1),
  .Founder-timeline-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
  }

  .Founder-timeline-item:nth-child(3) {
    border-right: 1px solid var(--border-color);
  }
}

@media (max-width: 560px) {
  .Founder-section {
    padding: 56px 0;
  }

  .Founder-timeline {
    grid-template-columns: 1fr;
    border-radius        : 12px;
  }

  .Founder-timeline-item {
    border-right : none;
    border-bottom: 1px solid var(--border-color);
    padding      : 24px 20px;
  }

  .Founder-timeline-item:last-child {
    border-bottom: none;
  }

  .Founder-est-badge {
    width : 60px;
    height: 60px;
    top   : -10px;
    right : -10px;
  }

  .Founder-est-badge span:last-child {
    font-size: 14px;
  }
}

.dc-wrapper {
  background-color: #ffffff;
  padding         : 60px 0;
}

.dc-card-box {
  background   : #ffffff;
  border       : 1px solid #eeeeee;
  margin-bottom: 30px;
  transition   : all 0.4s ease;
  padding      : 0;
  border-top   : 3px solid #333333;
  /* Dark header line */
}

.dc-card-box:hover {
  border-top-color: #FF0000;
  /* Red highlight on hover */
  box-shadow      : 0 10px 20px rgba(0, 0, 0, 0.08);
}

.dc-header {
  padding      : 25px;
  text-align   : center;
  border-bottom: 1px solid #f5f5f5;
}

.dc-logo-img {
  height       : 45px;
  margin-bottom: 15px;
}

.dc-comp-name {
  color         : #333333;
  font-weight   : 700;
  font-size     : 15px;
  margin        : 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dc-body {
  padding: 25px;
}

.dc-info-row {
  display      : table;
  width        : 100%;
  margin-bottom: 15px;
}

.dc-icon-cell {
  display       : table-cell;
  width         : 30px;
  vertical-align: top;
  color         : #FF0000;
  font-size     : 14px;
}

.dc-text-cell {
  display       : table-cell;
  vertical-align: top;
  color         : #666666;
  font-size     : 13px;
  line-height   : 1.5;
}

.dc-contact-link {
  color          : #333333;
  font-weight    : 600;
  text-decoration: none;
}

.dc-contact-link:hover {
  color          : #FF0000;
  text-decoration: none;
}

/* Year Badge */
.dc-badge-year {
  background: #333333;
  color     : #ffffff;
  font-size : 10px;
  padding   : 2px 8px;
  display   : inline-block;
  margin-top: 10px;
}

.dc-card-box:hover .dc-badge-year {
  background: #FF0000;
}

.split-section {
  background   : #ffffff;
  padding      : 0 0 60px 0;
  border-bottom: 1px solid #eeeeee;
}

/* Left Side: Form Styling */
.form-container {
  padding-right: 30px;
}

.dc-title-main {
  color         : #333;
  font-weight   : 800;
  text-transform: uppercase;
  margin-top    : 0;
}

.dc-red-line {
  width        : 40px;
  height       : 3px;
  background   : #FF0000;
  margin-bottom: 25px;
}

.dc-input {
  height       : 45px;
  border-radius: 0;
  border       : 1px solid #ddd;
  box-shadow   : none !important;
}

.dc-input:focus {
  border-color: #FF0000;
}

.dc-textarea {
  border-radius: 0;
  border       : 1px solid #ddd;
  box-shadow   : none !important;
}

.dc-textarea:focus {
  border-color: #FF0000;
}

.btn-send {
  background    : #333;
  color         : #fff;
  border        : none;
  border-radius : 0;
  padding       : 12px 30px;
  font-weight   : 700;
  text-transform: uppercase;
  transition    : 0.3s;
  letter-spacing: 1px;
}

.btn-send:hover {
  background: #FF0000;
  color     : #fff;
}

/* Right Side: Map Styling */
.map-wrapper {
  height    : 500px;
  border    : 1px solid #eeeeee;
  position  : relative;
  filter    : grayscale(100%);
  transition: 0.5s;
}

.map-wrapper:hover {
  filter: grayscale(0%);
}

@media (max-width: 991px) {
  .form-container {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .map-wrapper {
    height: 350px;
  }
}
/* Card Layout Split */
.testimonial-card.active {
    display: flex !important;
    gap: 24px;
    align-items: center;
}

.avatar-wrap {
    flex: 0 0 30%; /* 30% Width */
    text-align: center;
}

.quote-body {
    flex: 0 0 70%; /* 70% Width */
}

/* Navigation Styling */
.testimonial-nav {
    margin-top: 20px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #e0e0e0;
}

.slider-counter {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}
/* Active state for main navigation links */
.new-navbar-link.active {
    background-color: #ffd6d65c !important; /* Dark Red background */
    color: #FF0000 !important;
    border: 1px solid #FF0000;           /* White text */
    padding: 8px 16px;                   /* Padding for button look */
    border-radius: 4px;                  /* Rounded corners */
    font-weight: 600;                    /* Medium bold text */
    display: inline-block;               /* Proper alignment */
    transition: all 0.3s ease;           /* Smooth transition */
}

/* Optional: Hover effect for active link to keep it looking interactive */
.new-navbar-link.active:hover {
    background-color: #d30000 !important; /* Slightly lighter red on hover */
    color: #ffffff !important;
}

/* For dropdown active links if needed */
.new-navbar-dropdown-link.active {
    background-color: #FF0000 !important;
    color: #ffffff !important;
    display: block;
    padding: 5px 15px;
}
:focus-visible{
  outline: none !important;
}
.new-navbar-megamenu-title a.active{
   background-color: #ffd6d65c !important; /* Dark Red background */
    color: #FF0000 !important;
    border: 1px solid #FF0000; 
    padding: 4px 8px;                   /* Padding for button look */
    border-radius: 4px;                  /* Rounded corners */
    font-weight: 600;                    /* Medium bold text */
    display: inline-block;               /* Proper alignment */
    transition: all 0.3s ease;    
}
.new-navbar-megamenu-column a.active{
  background-color: #ffd6d65c !important; /* Dark Red background */
    color: #FF0000 !important;
    border: 1px solid #FF0000; 
    padding: 4px 8px;                   /* Padding for button look */
    border-radius: 4px;                  /* Rounded corners */
    font-weight: 600;                    /* Medium bold text */
    display: inline-block;               /* Proper alignment */
    transition: all 0.3s ease;    
}
.avatar-name, .avatar-role {
    text-transform: capitalize; /* Forces first letter of every word to uppercase */
}

/* ============================================================
   Contact Form Message
   ============================================================ */
.form-msg {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.form-msg.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}
.form-msg.error {
  background: #fdecea;
  color: #c62828;
  border-left: 4px solid #c62828;
}

/* ============================================================
   Toast Notification
   ============================================================ */
.dc-toast {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99998;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 14px 20px 18px 16px;
  min-width: 280px;
  max-width: 360px;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #ccc;
  animation: toastSlideIn 0.3s ease;
}
.dc-toast.show { display: flex; }
.dc-toast.success { border-left-color: #2e7d32; }
.dc-toast.error   { border-left-color: #c62828; }
.dc-toast.info    { border-left-color: #1565c0; }
.toast-icon { font-size: 18px; font-weight: bold; flex-shrink: 0; }
.toast-message { flex: 1; font-size: 14px; color: #333; line-height: 1.4; }
.toast-close { background: none; border: none; cursor: pointer; font-size: 14px; color: #999; padding: 0; margin-left: 6px; flex-shrink: 0; }
.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  border-radius: 0 0 8px 8px;
  transition: width 3s linear;
}
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
