/* Maleesha 26-11-2025 */
.curve-shape {
  display: none !important;
}

.hero-slider {
  height: 90dvh !important;
  overflow: visible !important;
}

.hero-content {
  top: 50% !important;
}

.why-us {
  margin-top: 10dvh !important;
}

.cus_ml_nv_logo {
  background-color: rgb(255, 255, 255) !important;
  width: 101px !important;
  height: 100px !important;
  border-radius: 50% !important;
  position: absolute !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 999 !important;
  margin-left: -3dvh !important;
}

.logo img {
  max-height: 92px !important;
  margin-right: 0px !important;
  margin-top: -11px !important;
  margin-left: 15dvh !important;
  /* filter: drop-shadow(10px 9px 9px white) !important; */
}

.header .header-container {
  background: rgb(255, 255, 255);
}

.navmenu li a {
  color: black;
}

.navmenu a:hover {
  color: #29abdc !important;
}

.navmenu {
  margin-left: 15dvh !important;
}

.sitename {
  color: #29abdc !important;
}



/* Floating button */
#chatbot-btn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: #29abdc;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

/* Chat popup */
#chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* Header */
.chat-header {
  background: #29abdc;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

/* Body */
.chat-body {
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  font-size: 14px;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.chat-footer input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.chat-footer button {
  margin-left: 10px;
  padding: 8px 12px;
  border: none;
  background: #29abdc;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* Maleesha 29-11-2025 */
.why-us .content p {
  text-align: justify !important;
}

.cus_ml_book_btn {
  padding: 14px 20px !important;
  box-shadow: 0 10px 25px rgba(31, 135, 204, 0) !important;
}



.cus_ml_hm_services_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 20px;
  max-width: 70%;
  margin: 0 auto;
}

/* Last card spans full width and centered */
.cus_ml_hm_last_card {
  grid-column: 1 / -1;
  /* span both columns */
  justify-self: center;
  width: 60% !important;
  /* smaller width for center */
  margin-bottom: 5dvh;
}

/* Card styling remains the same */
.cus_ml_hm_service_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: visible;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  width: 100%;
  height: 10dvh;
}


/* Horizontal row inside card */
.cus_ml_hm_card_row {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  /* icon | title | arrow */
  align-items: center;
  padding: 15px 20px;
  gap: 15px;
}

/* Icon */
.cus_ml_hm_col_icon i {
  font-size: 28px;
  color: #29abdc;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Title */
.cus_ml_hm_col_title {
  font-size: 16px;
  font-weight: 600;
  color: #003566;
}

/* Arrow */
.cus_ml_hm_col_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cus_ml_hm_arrow {
  font-size: 20px;
  transition: 0.3s ease;
}

/* Description hidden by default */
.cus_ml_hm_description {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  margin: 0;
  background: #29abdc;
  transition: all 0.3s ease;
  border-radius: 0 0 12px 12px;
  color: white;
}

/* Show description on hover */
.cus_ml_hm_service_card.active .cus_ml_hm_description {
  max-height: 150px;
  padding: 10px 20px;
  z-index: 999;
}

/* Rotate arrow on hover */
.cus_ml_hm_service_card.active .cus_ml_hm_arrow {
  transform: rotate(180deg);
}

.cus_ml_hm_service_card.active {
  margin-bottom: 7dvh;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* PARALLAX */
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark Overlay */
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero-btn {
  margin-top: 25px;
  background: #29abdc;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(31, 135, 204, 0.4);
  transition: 0.3s ease;
  z-index: 3;
  position: relative;
}

.hero-btn:hover {
  transform: translateY(-4px);
  background: #4FC3F7;
}

/* Slider and search box */

/* ================== MAIN SEARCH BOX ================== */

.cus_gk-search-wrapper {
  position: relative !important;
  /* KEY FIX */
  z-index: 20 !important;
  /* Now works */
  margin-top: -80px;
  pointer-events: auto;
}

.cus_gk-search-wrapper .container {
  position: relative;
  z-index: 60;
}


.cus_gk-search-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Tabs */
.cus_gk-tabs .nav-link {
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  color: #555;
}

.cus_gk-tabs .nav-link.active {
  background: #29abdc;
  color: white;
}

/* Grid Layout */
.cus_gk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Fields */
.cus_gk-field label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}

/* Button */
.cus_gk-btn-search {
  width: 100%;
  background: #29abdc;
  border: none;
  padding: 12px;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.cus_gk-btn-search:hover {
  background: #29abdc;
}

/* Interests */
.cus_gk-interests .form-check-label {
  background: #f4f6f9;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
}

/* ================== MOBILE VERSION ================== */

@media(max-width: 768px) {

  /* Collapsed Toggle Button */
  .cus_gk-mobile-toggle {
    display: block;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    color: #0a0a0a;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cus_gk-mobile-toggle i {
    margin-right: 8px;
    color: #0b75b1;
    font-size: 20px;
  }

  /* Collapse content */
  .cus_gk-search-wrapper {
    margin-top: 10px;
  }

  .cus_gk-grid {
    grid-template-columns: 1fr;
  }

  .cus_gk-search-box {
    padding: 18px;
  }
}


/* Custom Styles with prefix cus_gk */
.cus_gk_filters_box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
}

.cus_gk_filter_title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.cus_gk_tour_card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

.cus_gk_tour_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cus_gk_tour_img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.cus_gk_tour_body {
  padding: 18px;
}

.cus_gk_tour_country {
  font-size: 14px;
  color: #1a73e8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.cus_gk_badge_tailor {
  background: #e6f0ff;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 20px;
  color: #1a73e8;
}

.cus_gk_tour_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cus_gk_price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-top: 8px;
}

.cus_gk_price small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #555;
}

.cus_gk_filter_range input[type="range"] {
  width: 100%;
}

.cus_gk_faq_section {
  margin-top: -115px;
}

.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ddd;
}

.timeline-step {
  text-align: center;
  width: 20%;
  position: relative;
}

.timeline-step .icon {
  width: 50px;
  height: 50px;
  background: #29abdc;
  border-radius: 50%;
  color: #fff;
  line-height: 50px;
  font-size: 22px;
  margin: 0 auto 15px;
}

.timeline-step .circle {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #29abdc;
  border-radius: 50%;
}

/* Slider base */
.visa-slider-container {
  overflow: hidden;
  padding: 20px 0;
}

.visa-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.visa-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Direction Control */
.visa-slider-1 .visa-track {
  animation-name: slideLeft;
  animation-duration: 25s;
}

.visa-slider-2 .visa-track {
  animation-name: slideRight;
  animation-duration: 25s;
}

/* Animation Keyframes */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Visa Item */
.visa-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.visa-item .fi {
  font-size: 22px;
}

.cus_gk_visa_section {
  margin-top: -90px;
}

/* Maleesha 12-12-2025 - About Page*/

.travel-about .hero-image .floating-stats {
  bottom: 16px !important;
  right: -10px !important;
}

.cus_ml_ab_flg {
  width: 17.7dvh !important;
  height: 15vh !important;
}

.cus_ml_ab_flg_img {
  height: 6vh !important;
}

.cus_justi {
  text-align: justify !important;
}

.cus_ml_ab_ceo_img {
  width: 45dvh !important;
}

.cus_ml_ab_ceo_msg {
  height: 50dvh !important;
}

.cus_ml_ab_ceo_msg1 {
  width: 88dvh !important;
}

.file-preview {
  margin-top: 8px;
  font-size: 13px;
}

.file-preview img {
  max-width: 100px;
  border-radius: 6px;
  margin-top: 5px;
}

.doc-hint {
  font-size: 13px;
  color: #6c757d;
  margin-top: 5px;
}

.cus_gk_v_form {
  margin-top: -50px;
}

.author-card {
  position: relative;
}

.offer-badge-img {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

.offer-badge-img img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.offer-badge-img img {
  transition: transform 0.3s ease;
}

.author-card:hover .offer-badge-img img {
  transform: scale(1.08);
}

.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: #fff;
}

/* SECTION */
.cus_gk_ayurveda {
  background: #f8faf7;
}

/* TITLES */
.cus_gk_section_title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f3d2b;
}

.cus_gk_section_subtitle {
  color: #5f6f65;
  font-size: 1.05rem;
}

/* IMAGE CARD */
.cus_gk_img_card {
  height: 400px !important;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.cus_gk_img_card img {
  width: 100%;
  transition: transform 0.6s ease;
}

.cus_gk_img_card:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.cus_gk_img_card:hover img {
  transform: scale(1.12);
}

/* CONTENT CARD */
.cus_gk_content_card {
  background: #ffffff;
  height: 400px !important;
  padding: 35px;
  border-radius: 60px 0px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;

  position: relative;
  /* IMPORTANT */
}

.cus_gk_content_card h4 {
  color: #204c38;
  font-weight: 600;
  margin-bottom: 15px;
}

.cus_gk_content_card p {
  color: #5c6b63;
  font-size: 1rem;
  line-height: 1.7;
}

/* BUTTONS */
.cus_gk_btn_group {
  position: absolute;
  bottom: 25px;
  right: 25px;

  display: flex;
  gap: 12px;
}

.cus_gk_btn_outline {


  color: #fff;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 500;
  background: #29abdc;
}

.cus_gk_btn_outline:hover {
  border: 2px solid #29abdc;
  color: #29abdc;
}

.cus_gk-btn-wtsapp {
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cus_gk_content_card {
    margin-top: 25px;
  }

  .cus_gk_btn_group {
    position: static;
    margin-top: 25px;
    justify-content: flex-start;
  }
}



/* HERO BACKGROUND */
/* .travel-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
}

.hero-background video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
} */

/* TEXT */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* FORM CARD */
.cus_gk_hero_form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  color: #333;
}


/* TABS */
.cus_gk_form_tabs .nav-link {
  border-radius: 50px;
  padding: 8px 26px;
  font-weight: 500;
  color: #666;
}

.cus_gk_form_tabs .nav-link.active {
  background: #29abdc;
  color: #fff;
}

.input-with-icon {
  position: relative;
}

/* FORM TEXT */
.cus_gk_form_title {
  font-weight: 600;
  text-align: center;
  color: #1f3d2b;
}

.cus_gk_form_subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 20px;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
}

.input-with-icon input,
.input-with-icon textarea,
.input-with-icon select {
  padding-left: 44px;
  border-radius: 12px;
}

/* BUTTON */
.cus_gk_submit_btn {


  padding: 8px 26px;
  font-weight: 500;
  color: #ffffff;
  background-color: #29abdc;
  border: none;


}

.cus_gk_submit_btn:hover {
  background-color: #ffffff;
  color: #29abdc;
  border: #29abdc solid 2px;
}

/* MAP SECTION */
.cus_gk_map_section {
  background: #f8faf7;
  padding: 80px 0;
}

/* WRAPPER */
.cus_gk_map_wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* MAP IFRAME */
.cus_gk_map_wrapper iframe {
  width: 100%;
  height: 600px;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* HOVER EFFECT */
.cus_gk_map_wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.28);
}

.cus_gk_map_wrapper:hover iframe {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* LOCATION BADGE */
.cus_gk_map_badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(41, 171, 220, 0.95);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cus_gk_map_badge i {
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cus_gk_map_wrapper iframe {
    height: 360px;
  }
}

/* SECTION */
.cus_gk_contact_luxury {
  background: linear-gradient(180deg, #f7faf9, #ffffff);
}

/* TITLES */
.cus_gk_lux_title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f3d2b;
}

.cus_gk_lux_subtitle {
  color: #5f6f65;
  font-size: 1.05rem;
}


/* GLASS SURFACE */
.cus_gk_lux_surface {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 48px 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: space-between;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.cus_gk_lux_item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cus_gk_lux_item:hover {
  transform: translateY(-6px);
}


/* ITEM */
.cus_gk_lux_item {
  flex: 1 1 220px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* ICON */
.cus_gk_lux_icon {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(41, 171, 220, 0.12);
  color: #29abdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* TEXT */
.cus_gk_lux_text .label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b9b92;
  margin-bottom: 4px;
}

.cus_gk_lux_text a,
.cus_gk_lux_text p {
  font-size: 1.05rem;
  color: #2d3e36;
  line-height: 1.6;
  margin: 0;
}

.cus_gk_lux_text a {
  text-decoration: none;
  font-weight: 500;
}

.cus_gk_lux_text a:hover {
  color: #29abdc;
}

/* DIVIDER */
.cus_gk_lux_divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e3ece7, transparent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cus_gk_lux_surface {
    flex-direction: column;
    gap: 30px;
  }

  .cus_gk_lux_divider {
    width: 100%;
    height: 1px;
  }
}

/* ceo */
.cus_ml_ab_ceo_img {
  width: 45dvh !important;
}

.cus_ml_ab_ceo_msg {
  height: 50dvh !important;
}

.cus_ml_ab_ceo_msg1 {
  width: 88dvh !important;
}


/* MAIN SECTION */
.cus_ml_ab_ceo-section {
  max-width: 1200px;
  margin: auto;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 50px;
}

.cus_ml_ab_ceo-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.cus_ml_ab_ceo-profile {
  flex: 1;
}

.cus_ml_ab_ceo-profile h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.cus_ml_ab_ceo-profile span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.cus_ml_ab_ceo-image {
  margin-top: 25px;
}

.cus_ml_ab_ceo-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
}

/* RIGHT */
.cus_ml_ab_ceo-quote {
  flex: 1.2;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
}

.cus_ml_ab_ceo-quote p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.cus_ml_ab_quote-text {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
}

.cus_ml_ab_quote-text::before {
  content: "“";
  font-size: 40px;
  position: absolute;
  left: -20px;
  top: -10px;
}

.cus_ml_ab_quote-text::after {
  content: "”";
  font-size: 40px;
  position: absolute;
  bottom: -20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cus_ml_ab_ceo-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cus_ml_ab_ceo-image img {
    margin: auto;
  }

  .cus_ml_ab_quote-text::before,
  .cus_ml_ab_quote-text::after {
    display: none;
  }
}

.feature-card {
  height: 20dvh !important;
}

.feature-front h4 {
  font-size: 16px !important;
}

.travel-about .features-grid .feature-card .feature-back p {
  font-size: 16px;
}



.ceo-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #f8fafc;
}

.cus_ml_ab_hero-image {
  border-radius: 50px 0px 50px 0px !important;
  height: 55dvh !important;
  width: 65dvh !important;
}

.cus_ml_ab_des_about_solarfast {
  padding: 80px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.cus_ml_ab_des_about_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* Image Section */
.cus_ml_ab_des_about_image_wrap {
  position: relative;
  width: 45%;
}

.cus_ml_ab_des_about_dark_shape {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 100%;
  height: 90%;
  background: #29abdc;
  border-radius: 12px;
  z-index: 0;
}

.cus_ml_ab_des_about_main_image {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* Experience Box */
.cus_ml_ab_des_about_experience_box {
  position: absolute;
  top: 30px;
  left: -30px;
  background: #29abdc;
  color: #ffffff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}

.cus_ml_ab_des_about_experience_box h3 {
  font-size: 32px;
  margin: 0;
}

.cus_ml_ab_des_about_experience_box p {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Content Section */
.cus_ml_ab_des_about_content {
  width: 55%;
  margin-left: 5dvh;
}

.cus_ml_ab_des_about_tagline {
  font-size: 20px;
  letter-spacing: 4px;
  color: #29abdc;
  font-weight: 600;
}

.cus_ml_ab_des_about_title {
  font-size: 36px;
  margin: 15px 0 25px;
  color: #0a2239;
}

.cus_ml_ab_des_about_title span {
  background: #29abdc;
  color: #ffffff;
  padding: 5px 12px;
  margin-left: 8px;
}

.cus_ml_ab_des_about_content p {
  font-size: 20px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 20px;
}

.cus_ml_ab_des_about_content a {
  color: #29abdc;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .cus_ml_ab_des_about_container {
    flex-direction: column;
  }

  .cus_ml_ab_des_about_image_wrap,
  .cus_ml_ab_des_about_content {
    width: 100%;
  }

  .cus_ml_ab_des_about_dark_shape {
    display: none;
  }

  .cus_ml_ab_des_about_experience_box {
    left: 10px;
  }
}

.cus_ml_ab_mission_section {
  background: #bfe6fb;
  padding: 80px 0;
}

.cus_ml_ab_mission_container {
  max-width: 60%;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cus_ml_ab_mission_subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #29abdc;
}

.cus_ml_ab_mission_title {
  font-size: 38px;
  margin: 10px 0 20px;
  color: #05364b;
}

.cus_ml_ab_mission_description {
  font-size: 20px;
  line-height: 1.8;
  color: #3b5f6f;
  margin-bottom: 30px;
}

.cus_ml_ab_mission_features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cus_ml_ab_mission_feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cus_ml_ab_mission_feature h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #05364b;
}

.cus_ml_ab_mission_feature p {
  margin: 0;
  font-size: 15px;
  color: #3b5f6f;
}

.cus_ml_ab_mission_icon {
  width: 48px;
  height: 48px;
  background: #4bb3fd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* IMAGES */
.cus_ml_ab_mission_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cus_ml_ab_mission_image_large {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 80px 0 80px 0;
  width: 30dvh;
  height: 50dvh;
}

.cus_ml_ab_mission_image_large img {
  width: 40dvh;
  height: 50dvh;
  /* object-fit: cover; */
}

.cus_ml_ab_mission_image_grid {
  display: grid;
  gap: 20px;
}

.cus_ml_ab_mission_image_grid img {
  width: 34dvh;
  border-radius: 16px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cus_ml_ab_mission_container {
    grid-template-columns: 1fr;
  }

  .cus_ml_ab_mission_images {
    grid-template-columns: 1fr;
  }

  .cus_ml_ab_mission_image_large {
    border-radius: 40px;
  }
}


.cus_ml_ab_ceo_msg_section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.cus_ml_ab_ceo_msg_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Image */
.cus_ml_ab_ceo_msg_image_wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cus_ml_ab_ceo_msg_image {
  width: 100%;
  max-width: 40dvh;
  border-radius: 40px 0px 40px 0px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.336);
  object-fit: cover;
}

/* Content */
.cus_ml_ab_ceo_msg_content {
  flex: 1.2;
}

.cus_ml_ab_ceo_msg_title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.cus_ml_ab_ceo_msg_text {
  font-size: 20px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.cus_ml_ab_ceo_msg_author {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.cus_ml_ab_ceo_msg_role {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .cus_ml_ab_ceo_msg_container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .cus_ml_ab_ceo_msg_content {
    flex: 1;
  }
}

/* Content Box */
.cus_ml_ab_obj_content {
  max-width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  margin-left: 50dvh;
  position: absolute;
}






.cus_ml_ab_srv_team-section {
  padding: 60px 0;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.cus_ml_ab_srv_container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.cus_ml_ab_srv_section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 5dvh;
}

.cus_ml_ab_srv_slider-wrapper {
  overflow: hidden;
}

.cus_ml_ab_srv_team-slider {
  display: flex;
  width: max-content;
  animation: cus_ml_ab_srv_scroll 25s linear infinite;
}

.cus_ml_ab_srv_team-card {
  width: 50dvh;
  margin-right: 20px;
  background: #fff;
  padding-bottom: 20px;
  border-top-right-radius: 80px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cus_ml_ab_srv_team-card img {
  width: 100%;
  height: 30dvh;
  border-top-right-radius: 40px;
  object-fit: cover;
  margin-bottom: 5dvh;
}

.cus_ml_ab_srv_role {
  color: #777;
}

/* CONTINUOUS RIGHT → LEFT */
@keyframes cus_ml_ab_srv_scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
/* .cus_ml_ab_srv_slider-wrapper:hover .cus_ml_ab_srv_team-slider {
  animation-play-state: paused;
} */

.cus_ml_ab_travel-hero {
  background: linear-gradient(135deg, color-mix(in srgb, #00b9ff, transparent 60%) 0%, color-mix(in srgb, #00cfff94, transparent 80%) 50%, color-mix(in srgb, var(--background-color), transparent 90%) 100%) !important;
}

/* =========================================
   Sri Lankan Tours Page Styles (Redesigned - Style)
   ========================================= */

.cus_gk_section_padding {
  padding: 80px 0;
}

/* Overview Cards */
.cus_gk_overview_card {
  background: #f9fbfc;
  border: 1px solid #eef2f5;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cus_gk_overview_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

/* Tour Card Redesign */
.cus_gk_tour_card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cus_gk_tour_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cus_gk_tour_image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.cus_gk_tour_card:hover .cus_gk_tour_image img {
  transform: scale(1.08);
  /* Subtle zoom */
}

.cus_gk_tour_price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #29abdc;
  /* Green */
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.4);
}

.cus_gk_tour_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cus_gk_tour_content h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
  /* font-family: 'Poppins', sans-serif; (Inline in HTML but good to catch here too if needed) */
}

.cus_gk_tour_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  /* Push to bottom of content area */
  padding-top: 15px;
  border-top: 1px dashed #eee;
  font-size: 0.9rem;
  color: #666;
}

.cus_gk_tour_details i {
  margin-right: 5px;
}

.cus_gk_btn_card {
  margin-top: 20px;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  border-color: #29abdc;
  color: #29abdc;
  width: 150px;
  transition: all 0.3s ease;
}

.cus_gk_btn_card:hover {
  background-color: #29abdc;
  color: #fff;
  box-shadow: 0 5px 15px rgba(50, 132, 255, 0.3);
  transform: translateY(-2px);
}

/* Search Widget Styles */
.cus_gk_search_widget {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cus_gk_search_widget .nav-pills .nav-link {
  color: #555;
  background: #f8f9fa;
  margin-right: 5px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.cus_gk_search_widget .nav-pills .nav-link.active {
  background: #0b2c61;
  color: #fff;
  box-shadow: 0 4px 10px rgba(11, 44, 97, 0.3);
}

.cus_gk_search_widget .nav-tabs .nav-link {
  color: #555;
  background: #f3f6f9;
  border: 1px solid transparent;
}

.cus_gk_search_widget .nav-tabs .nav-link.active {
  color: #fff;
  background: #29abdc;
  /* Navy Blue */
  box-shadow: 0 4px 10px rgba(11, 44, 97, 0.2);
}

.cus_gk_search_widget .form-control,
.cus_gk_search_widget .form-select {
  border: 1px solid #edf2f7;
  background-color: #f8f9fa;
  font-size: 0.95rem;
}

.cus_gk_search_widget .form-control:focus,
.cus_gk_search_widget .form-select:focus {
  border-color: #3284FF;
  box-shadow: 0 0 0 4px rgba(50, 132, 255, 0.1);
  background-color: #fff;
}

/* Timeline Styles (Single Tour) */
.cus_gk_timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px dashed #dee2e6;
  margin-left: 10px;
}

.cus_gk_timeline_item {
  position: relative;
  padding-bottom: 20px;
}

.cus_gk_timeline_marker {
  position: absolute;
  left: -39px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: #29abdc;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #29abdc;
}

.cus_gk_timeline_content:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Glass Effect Styles */
.cus_gk_nature_bg {
  background-image: url('../img/main/old2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cus_gk_nature_bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.cus_gk_glass_card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cus_gk_glass_card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.cus_gk_glass_card h4 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cus_gk_glass_card p {
  color: #f0f0f0 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.cus_gk_glass_card i {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(41, 171, 220, 0.6);
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

/* ================== ABOUT SLIDER & TABS ================== */

/* Slider */
.cus_gk_about_slider {
  width: 100%;
}

.cus_gk_about_slider .swiper-pagination-bullet-active {
  background-color: #29abdc !important;
}

/* Text Justify */
.text-justify {
  text-align: justify;
}

/* Custom Tabs */
.cus_gk_about_tabs .nav-link {
  color: #555;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.cus_gk_about_tabs .nav-link:hover {
  background-color: #e2e6ea;
  color: #0b2c61;
}

.cus_gk_about_tabs .nav-link.active {
  background-color: #29abdc !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(41, 171, 220, 0.3);
  border-color: #29abdc;
}

/* ================== ITINERARY BUTTONS & MODALS ================== */

.cus_gk_btn_view_details {
  border: 1px solid #29abdc;
  color: #29abdc;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px 15px;
  background: transparent;
}

.cus_gk_btn_view_details:hover {
  background-color: #29abdc;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(41, 171, 220, 0.2);
}

.cus_gk_modal .modal-content {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cus_gk_modal .modal-header {
  background: linear-gradient(135deg, #29abdc, #31afdd);
  color: #0000;
  border-bottom: none;
}

.cus_gk_modal .btn-close {
  filter: brightness(0) invert(1);
}

.cus_gk_modal_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.cus_gk_modal_highlight_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cus_gk_modal_highlight_item i {
  color: #29abdc;
}

/* Mobile adjustments for itinerary modals */
@media (max-width: 768px) {
  .cus_gk_modal_img {
    height: 180px;
  }

  .cus_gk_modal .modal-title {
    font-size: 1.1rem;
  }
}


/* ================== PRICING & HOTEL TABLES ================== */

.cus_gk_hotel_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.cus_gk_hotel_table thead th {
  background: #79ceed !important;
  color: #0b2c61;
  padding: 15px;
  font-weight: 600;
  border: none;
}

.cus_gk_hotel_table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.cus_gk_hotel_table tbody tr:last-child td {
  border-bottom: none;
}

.cus_gk_hotel_table .location-col {
  font-weight: 700;
  color: #0b2c61;
  background: #f8faff !important;
}

.cus_gk_price_card {
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.cus_gk_price_card:hover {
  transform: translateY(-10px);
}

.cus_gk_price_card.tier-4 {
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
  border: 1px solid #dee2e6;
}

.cus_gk_price_card.tier-5 {
  background: linear-gradient(135deg, #29abdc 0%, #37a5cd 100%);
  color: #fff;
}

.cus_gk_fee_item {
  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  border-left: 4px solid #29abdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.cus_gk_note_box {
  background: #fff8e1;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 15px;
}

.cus_gk_list_vibrant li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.cus_gk_list_vibrant li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
}

.btn-outline-primary {
  border-color: #29abdc !important;
  color: #000;
}

.btn-outline-primary:hover {
  background-color: #29abdc !important;
  color: #fff !important;
}

/* FLIGHT SEARCH STYLES */
.cus_gk-bg-flight {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /* margin-top: -80px; */
  position: relative;
  z-index: 100;
}

.cus_gk-flight-search-form label {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.cus_gk-flight-search-form .form-control,
.cus_gk-flight-search-form .form-select {
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cus_gk-btn-flight-search {
  background: #29abdc;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  height: 50px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cus_gk-btn-flight-search:hover {
  background: #29abdc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 130, 187, 0.918);
}

/* NO RESULT SECTION */
.cus_gk-no-result-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  margin-bottom: 50px;
}

.cus_gk-no-result-icon {
  font-size: 50px;
  color: #29abdc;
  margin-bottom: 20px;
}

.cus_gk-inquiry-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  text-align: left;
  border: 1px solid #e9ecef;
}

.cus_gk-inquiry-box h4 {
  color: #29abdc;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #29abdc;
  padding-bottom: 10px;
  display: inline-block;
}

/* MODAL STYLES */
.modal-header {
  background: #29abdc;
  color: white;
}

.modal-title {
  font-weight: 700;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.cus_gk-flight-card-action {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cus_gk-btn-details {
  background-color: transparent;
  border: 2px solid #29abdc;
  color: #29abdc;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cus_gk-btn-details:hover {
  background-color: #29abdc;
  color: white;
}

/* --- Destination Page Styles (cus_gk_dest) --- */

/* Slider (Right Side) */
.cus_gk_dest-slider-wrapper {
  position: relative;
  border: 5px solid #fff;
  /* White frame */
}

.cus_gk_dest-slider {
  width: 100%;
  height: 450px;
  /* Taller, narrower slider */
  border-radius: 12px;
}

.cus_gk_dest-slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
  /* Subtle zoom effect */
}

.swiper-slide-active .cus_gk_dest-slide-img {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Content (Left Side) */
.cus_gk_dest-divider {
  width: 60px;
  height: 4px;
  background-color: #29abdc;
  border-radius: 2px;
}

.cus_gk_dest-story .first-letter-big::first-letter {
  font-size: 3.5rem;
  font-weight: bold;
  color: #29abdc;
  font-family: "Playfair Display", serif;
  float: left;
  margin-right: 15px;
  line-height: 0.8;
}

.cus_gk_dest-story p {
  line-height: 1.8;
  margin-bottom: 0;
}

/* Inline Image */
.cus_gk_dest-img-frame {
  position: relative;
  padding: 8px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.cus_gk_dest-img-frame:hover {
  transform: rotate(0deg);
}

.font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* Sticky Sidebar */
.cus_gk_dest-sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* Swiper Nav Button Customization */
.cus_gk_dest-slider .swiper-button-next,
.cus_gk_dest-slider .swiper-button-prev {
  color: #fff;
  background: rgba(41, 171, 220, 0.5);
  /* Primary color tint */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(2px);
}

.cus_gk_dest-slider .swiper-button-next:after,
.cus_gk_dest-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.btn-primary {
  background-color: #29abdc;
  border-color: #29abdc;
}

.btn-primary:hover {
  background-color: #29abdc;
  border-color: #dadfdf;
}

/* =========================================
   Revamp About Us - Round 3 Premium Design
   ========================================= */

.cus_gk_about_section {
  padding: 120px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* --- Section Headers --- */
.cus_gk_section_header {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cus_gk_section_header h3 {
  /* color: #29abdc; */
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 25px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.cus_gk_section_header h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #29abdc;
  border-radius: 2px;
}

.cus_gk_section_header p {
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* --- Why Choose Us / Mission (Feature Split Lists) --- */
.cus_gk_feature_section {
  background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
  padding: 100px 0;
}

.cus_gk_feature_img_box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.cus_gk_feature_img_box:hover img {
  transform: scale(1.05);
}

.cus_gk_feature_list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.cus_gk_feature_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 4px solid transparent;
}

.cus_gk_feature_item:hover {
  transform: translateX(10px);
  border-left-color: #29abdc;
  box-shadow: 0 15px 35px rgba(41, 171, 220, 0.1);
}

.cus_gk_feature_icon {
  min-width: 50px;
  height: 50px;
  background: rgba(41, 171, 220, 0.1);
  color: #29abdc;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-right: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cus_gk_feature_item:hover .cus_gk_feature_icon {
  background: #29abdc;
  color: #fff;
}

.cus_gk_feature_content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003566;
}

.cus_gk_feature_content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- CEO Message Section (Preserved & Enhanced) --- */
.cus_gk_ceo_section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: visible;
}

.cus_gk_ceo_bg_shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60%;
  height: 100%;
  background: #f0f8ff;
  border-radius: 300px 0 0 300px;
  z-index: 1;
  opacity: 0.5;
}

.cus_gk_ceo_img_wrapper {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid #fff;
  overflow: hidden;
}

.cus_gk_ceo_img_wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.cus_gk_ceo_content {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 4;
  margin-left: -60px;
  border-radius: 20px;
}

.cus_gk_ceo_quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  line-height: 2;
  margin-bottom: 30px;
  position: relative;
}

.cus_gk_ceo_quote i {
  font-size: 4rem;
  color: #29abdc;
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -20px;
}

.cus_gk_ceo_name {
  font-weight: 800;
  color: #003566;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.cus_gk_ceo_title {
  color: #29abdc;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Objectives (Steps Design) --- */
.cus_gk_obj_steps_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
}

.cus_gk_obj_step {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: all 0.4s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.cus_gk_obj_step:last-child {
  border-right: none;
}

.cus_gk_obj_step:hover {
  background: #f9fcff;
}

.cus_gk_obj_step_icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #29abdc;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(41, 171, 220, 0.15);
  position: relative;
  z-index: 2;
  border: 2px solid rgba(41, 171, 220, 0.1);
  transition: all 0.4s ease;
}

.cus_gk_obj_step:hover .cus_gk_obj_step_icon {
  transform: translateY(-10px) rotateY(180deg);
  background: #29abdc;
  color: #fff;
  border-color: #29abdc;
}

.cus_gk_obj_step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.cus_gk_obj_step p {
  color: #666;
  line-height: 1.7;
}

/* --- Services (Masonry/Grid with Hover) --- */
.cus_gk_services_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.cus_gk_service_item {
  flex: 1 1 350px;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.cus_gk_service_bg_img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.cus_gk_service_item:hover .cus_gk_service_bg_img {
  transform: scale(1.1);
}

.cus_gk_service_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 53, 102, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.cus_gk_service_item:hover .cus_gk_service_info {
  transform: translateY(0);
  padding-bottom: 40px;
}

.cus_gk_service_icon_float {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #4fc3f7;
  opacity: 0.8;
  transform: translateX(-10px);
  transition: transform 0.4s ease;
}

.cus_gk_service_item:hover .cus_gk_service_icon_float {
  transform: translateX(0);
}

.cus_gk_service_info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.cus_gk_service_info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.cus_gk_service_item:hover .cus_gk_service_info p {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

.cus_ml_btn_star {
  background-color: #ffffff !important;
  color: #00b9ff !important;
}