@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');   
:root {
      --blue:   #088FC7;
      --orange: #FD5806;
      --green:  #68A864;
      --blue-light:   #E6F5FC;
      --orange-light: #FFF0E8;
      --green-light:  #EEF7ED;
      --text-dark:  #1a2330;
      --text-mid:   #4a5568;
      --text-light: #718096;
      --border:     #e2e8f0;
      --white:      #ffffff;
      --bg:         #f8fafb;
      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
    }
    
     .cta-section {
      padding: 80px 0;
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }
 
    /* decorative background circles */
    .cta-section::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }
 
    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 240px; height: 240px;
      border-radius: 50%;
      background: rgba(253,88,6,0.15);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
 
    /* ── Two-col layout ── */
    .cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
 
    /* ── Left: image ── */
    .cta-image {
      text-align: center;
    }
 
    .cta-image img {
      max-width: 100%;
      height: auto;
      display: inline-block;
      filter: drop-shadow(0 8px 32px rgba(0,0,0,0.18));
      transition: transform 0.4s ease;
    }
 
    .cta-image img:hover {
      transform: translateY(-6px);
    }
 
    /* ── Right: content ── */
    .cta-content .sub-title {
      display: inline-block;
      background: rgba(253,88,6,0.18);
      color: #ffd0b5;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(253,88,6,0.3);
    }
 
    .cta-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 10px;
    }
 
    .khl-bar {
      width: 48px;
      height: 4px;
      background: var(--orange);
      border-radius: 2px;
      margin: 18px 0 22px;
    }
 
    .cta-content p {
      font-size: 15.5px;
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
      margin-bottom: 14px;
    }
 
    /* ── Feature pills ── */
    .cta-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0 32px;
    }
 
    .cta-feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 50px;
    }
 
    .cta-feature-pill .fa-solid {
      font-size: 12px;
      color: var(--orange);
    }
 
    /* ── Button ── */
    .cta-buttons {
      margin-top: 8px;
    }
 
    .theme-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--orange);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: background 0.18s ease, transform 0.18s ease;
    }
 
    .theme-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }
 
    .theme-btn .fa-solid {
      font-size: 15px;
    }
 
    /* ── Responsive ── */
    @media (max-width: 820px) {
      .cta-row {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }
      
      .khl-header-inner{
          justify-content:space-between;
      }
 
      .cta-image { order: 1; }
      .cta-content { order: 2; }
 
      .cta-content h2 { font-size: 28px; }
 
      .khl-bar { margin: 18px auto 22px; }
 
      .cta-features { justify-content: center; }
    }
   .testimonial-section {
      padding: 80px 0;
      background: var(--bg-light);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Section Title ── */
    .section-title {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .sub-title {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
 
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 14px;
      line-height: 1.25;
    }
 
    .section-title p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.8;
    }
 
    /* ── Slider wrapper ── */
    .testimonial-slider-wrap {
      position: relative;
      overflow: hidden;
    }
 
    .testimonial-track {
      display: flex;
      gap: 28px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    /* ── Card ── */
    .testimonial-card {
      flex: 0 0 calc(33.333% - 19px);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 36px 28px 32px;
      text-align: center;
      position: relative;
      transition: transform 0.22s ease, border-color 0.22s ease;
    }
 
    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: var(--blue);
    }
 
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--blue);
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
 
    .testimonial-card:hover::before {
      transform: scaleX(1);
    }
 
    /* ── Avatar ── */
    .testimonial-image {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      margin: 0 auto 20px;
      background: var(--blue-light);
      border: 3px solid var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.22s ease, background 0.22s ease;
    }
 
    .testimonial-card:hover .testimonial-image {
      border-color: var(--blue);
      background: var(--blue);
    }
 
    .testimonial-image .initials {
      font-size: 22px;
      font-weight: 600;
      color: var(--blue);
      font-family: 'DM Sans', sans-serif;
      line-height: 1;
      transition: color 0.22s ease;
    }
 
    .testimonial-card:hover .testimonial-image .initials {
      color: var(--white);
    }
 
    /* ── Quote icon ── */
    .quote-icon {
      font-size: 28px;
      color: var(--orange);
      opacity: 0.35;
      display: block;
      margin-bottom: 14px;
    }
 
    /* ── Review text ── */
    .testimonial-content p {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 18px;
    }
 
    /* ── Stars ── */
    .rating {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 16px;
    }
 
    .rating .fa-star {
      font-size: 14px;
      color: var(--orange);
    }
 
    /* ── Name & role ── */
    .testimonial-content h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
 
    .testimonial-content span {
      font-size: 12.5px;
      color: var(--blue);
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
 
    /* ── Dot nav ── */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }
 
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background 0.2s ease, width 0.2s ease;
      border: none;
      padding: 0;
    }
 
    .dot.active {
      background: var(--orange);
      width: 24px;
      border-radius: 4px;
    }
 
    /* ── Arrow buttons ── */
    .slider-arrows {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }
 
    .arrow-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--blue);
      background: transparent;
      color: var(--blue);
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s ease, color 0.18s ease;
    }
 
    .arrow-btn:hover {
      background: var(--blue);
      color: var(--white);
    }
 
    /* ── Responsive ── */
    @media (max-width: 900px) {
      .testimonial-card {
        flex: 0 0 calc(50% - 14px);
      }
    }
 
    @media (max-width: 560px) {
      .testimonial-card {
        flex: 0 0 100%;
      }
 
      .section-title h2 {
        font-size: 26px;
      }
    }
    
      .explore-section {
      padding: 80px 0;
      background: var(--bg-light);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Section Title ── */
    .section-title {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .sub-title {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
 
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 14px;
      line-height: 1.25;
    }
 
    .section-title p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.8;
    }
 
    /* ── Grid ── */
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
 
    /* ── Card ── */
    .destination-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      background: var(--text-dark);
      cursor: pointer;
    }
 
    .destination-card img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 0.92;
    }
 
    .destination-card:hover img {
      transform: scale(1.06);
      opacity: 0.55;
    }
 
    /* ── Overlay content ── */
    .destination-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 20px 22px;
      background: linear-gradient(to top, rgba(10,20,35,0.92) 0%, rgba(10,20,35,0.5) 60%, transparent 100%);
      transition: padding 0.3s ease;
    }
 
    .destination-card:hover .destination-content {
      padding-bottom: 28px;
    }
 
    .destination-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0;
      transition: margin-bottom 0.3s ease;
    }
 
    .destination-content p {
      font-size: 13.5px;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
      margin-top: 0;
    }
 
    .destination-card:hover .destination-content h3 {
      margin-bottom: 8px;
    }
 
    .destination-card:hover .destination-content p {
      max-height: 120px;
      opacity: 1;
      margin-top: 4px;
    }
 
    /* ── Location pill ── */
    .destination-content h3::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      margin-right: 8px;
      vertical-align: middle;
      margin-bottom: 2px;
    }
 
    /* ── Top badge on featured card (first card) ── */
    .destination-card.featured::after {
      content: 'Most Visited';
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--orange);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 50px;
      letter-spacing: 0.04em;
    }
 
    /* ── Responsive ── */
    @media (max-width: 960px) {
      .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 560px) {
      .destinations-grid {
        grid-template-columns: 1fr;
      }
 
      .section-title h2 {
        font-size: 26px;
      }
    }
    
    .newpara {
      padding: 80px 0;
      background: var(--bg-light);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Two-column row ── */
    .newpara-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
 
    /* ── Content Box ── */
    .content-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 36px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
 
    .content-box::before {
      content: '';
      display: block;
      height: 4px;
      background: var(--blue);
      position: absolute;
      top: 0; left: 0; right: 0;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
 
    /* ── Sub title ── */
    .sub-title {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
 
    /* ── Headings ── */
    .content-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
      margin-bottom: 16px;
    }
 
    .content-box h2 span {
      color: var(--blue);
    }
 
    /* ── Accent bar ── */
    .khl-bar {
      width: 44px;
      height: 3px;
      background: var(--orange);
      border-radius: 2px;
      margin-bottom: 20px;
    }
 
    /* ── Paragraphs ── */
    .content-box p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 14px;
    }
 
    .content-box p:last-of-type {
      margin-bottom: 0;
    }
 
    /* ── Call box ── */
    .call-box {
      margin-top: 28px;
    }
 
    .theme-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: background 0.18s ease;
    }
 
    .theme-btn:hover {
      background: var(--orange-dark);
    }
 
    .theme-btn::before {
      content: '📞';
      font-size: 15px;
    }
 
    /* ── Service list ── */
    .service-list {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.6;
      padding: 10px 14px;
      background: var(--bg-light);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--green);
    }
 
    .service-list li::before {
      content: '';
      flex-shrink: 0;
      margin-top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }
 
    /* ── Responsive ── */
    @media (max-width: 768px) {
      .newpara-row {
        grid-template-columns: 1fr;
        gap: 24px;
      }
 
      .content-box {
        padding: 28px 22px;
      }
 
      .content-box h2 {
        font-size: 22px;
      }
    }
    
     .booking-info-section {
      padding: 80px 0;
      background: var(--bg-light);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Section Title ── */
    .section-title {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .sub-title {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
 
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 14px;
      line-height: 1.25;
    }
 
    .section-title p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }
 
    /* ── Cards Grid ── */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
 
    /* ── Info Card ── */
    .info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 22px;
      text-align: center;
      transition: transform 0.22s ease, border-color 0.22s ease;
      position: relative;
      overflow: hidden;
    }
 
    .info-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s ease;
    }
 
    .info-card:hover {
      transform: translateY(-5px);
      border-color: var(--blue);
    }
 
    .info-card:hover::after {
      transform: scaleX(1);
    }
 
    /* ── Icon Box ── */
    .icon-box {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      transition: background 0.22s ease;
    }
 
    .info-card:hover .icon-box {
      background: var(--blue);
    }
 
    .icon-box .fa {
      font-size: 22px;
      color: var(--blue);
      transition: color 0.22s ease;
    }
 
    .info-card:hover .icon-box .fa {
      color: var(--white);
    }
 
    /* ── Card Text ── */
    .info-card h3 {
      font-size: 15.5px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.35;
    }
 
    .info-card p {
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.75;
    }
 
    /* ── Responsive ── */
    @media (max-width: 960px) {
      .info-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 520px) {
      .info-grid {
        grid-template-columns: 1fr;
      }
 
      .section-title h2 {
        font-size: 24px;
      }
    }
    .fleet-section {
      padding: 80px 0;
      background: var(--bg-light);
    }
 
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Section Title ── */
    .section-title {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .sub-title {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
 
    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 14px;
      line-height: 1.25;
    }
 
    .section-title h2 span {
      color: var(--blue);
    }
 
    .section-title p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.75;
    }
 
    /* ── Grid ── */
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
 
    /* ── Card ── */
    .fleet-card {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
 
    .fleet-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(8, 143, 199, 0.10);
    }
 
    /* ── Image area ── */
    .fleet-image {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--blue-light);
    }
 
    .fleet-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }
 
    .fleet-card:hover .fleet-image img {
      transform: scale(1.04);
    }
 
    .price-tag {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: var(--orange);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 50px;
      letter-spacing: 0.02em;
    }
 
    /* ── Content area ── */
    .fleet-content {
      padding: 20px 22px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
 
    .fleet-content h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
 
    .fleet-content p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 18px;
    }
 
    .theme-btn {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      text-align: center;
      transition: background 0.18s ease;
      align-self: flex-start;
    }
 
    .theme-btn:hover {
      background: var(--blue-dark);
    }
 
    /* ── Accent top border on hover ── */
    .fleet-card::before {
      content: '';
      display: block;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
 
    .fleet-card:hover::before {
      transform: scaleX(1);
    }
 
    /* ── Responsive ── */
    @media (max-width: 960px) {
      .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 580px) {
      .fleet-grid {
        grid-template-columns: 1fr;
      }
 
      .section-title h2 {
        font-size: 26px;
      }
    }
 
    /* ── Section ── */
    .about {
      padding: 80px 0;
    }
 
  
 
    /* ── Left: Text ── */
    .about_text {
      margin-bottom: 28px;
    }
 
    .khl-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }
 
    .about_text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 20px;
      position: relative;
    }
 
    .about_text h2 span {
      color: var(--blue);
    }
 
    .khl-accent-bar {
      width: 52px;
      height: 4px;
      background: var(--orange);
      border-radius: 2px;
      margin-bottom: 24px;
    }
 
    .about_text p {
      font-size: 15.5px;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 16px;
    }
 
    /* ── Feature bullets ── */
    .khl-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 20px 0 28px;
    }
 
    .khl-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.6;
    }
 
    .khl-feature-dot {
      flex-shrink: 0;
      margin-top: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
    }
 
    /* ── Collapse button ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      text-decoration: none;
    }
 
    .btn-primary {
      background: var(--blue);
      color: var(--white);
    }
 
    .btn-primary:hover {
      background: #0678a8;
    }
 
    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid var(--blue);
      margin-left: 10px;
    }
 
    .btn-outline:hover {
      background: var(--blue);
      color: var(--white);
    }
 
    .btn-cta {
      background: var(--orange);
      color: var(--white);
      padding: 14px 36px;
      font-size: 15px;
      border-radius: var(--radius-sm);
    }
 
    .btn-cta:hover {
      background: #e04a00;
    }
 
    /* ── TOC Collapse ── */
    .collapse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
 
    .collapse.show {
      max-height: 600px;
    }
 
    .card.card-body {
      margin-top: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 4px solid var(--blue);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 20px 24px;
    }
 
    .ez-toc-list {
      list-style: none;
      padding: 0;
    }
 
    .ez-toc-list li {
      padding: 4px 0;
      font-size: 14px;
      color: var(--text-mid);
    }
 
    .ez-toc-list li a {
      color: var(--blue);
      text-decoration: none;
      transition: color 0.15s;
    }
 
    .ez-toc-list li a:hover {
      color: var(--orange);
    }
 
    .ez-toc-list ul {
      list-style: none;
      padding-left: 16px;
      margin-top: 4px;
      border-left: 2px solid var(--border);
      padding-left: 12px;
    }
 
    .ez-toc-list ul li {
      font-size: 13px;
    }
 
    /* ── Right: Image ── */
    .img-fluid { width: 100%; height: auto; display: block; }
    .rounded { border-radius: var(--radius-lg); }
 
    .khl-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--blue-light);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      border: 2px dashed #b3d9ed;
      position: relative;
      overflow: hidden;
    }
 
    .khl-img-placeholder::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      background: var(--green-light);
      border-top: 2px solid #c3e0c1;
    }
 
    .khl-img-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--orange);
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
    }
 
    .khl-img-icon {
      position: relative;
      font-size: 56px;
      line-height: 1;
    }
 
    .khl-dest-pills {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      padding: 0 20px;
    }
 
    .khl-dest-pill {
      background: var(--white);
      color: var(--blue);
      border: 1.5px solid var(--blue);
      font-size: 12px;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 50px;
    }
 
    /* ── Stats ── */
    .khl-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
 
    .khl-stat {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px;
      text-align: center;
    }
 
    .khl-stat-num {
      font-size: 26px;
      font-weight: 700;
      color: var(--blue);
      font-family: 'Playfair Display', serif;
    }
 
    .khl-stat-label {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 4px;
    }
 
    /* ── Bottom CTA row ── */
    .col-md-12.text-center {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 24px;
    }
 
    /* ── Responsive ── */
    @media (max-width: 768px) {
     
 
      .about_text h2 {
        font-size: 28px;
      }
 
      .col-md-12.text-center {
        margin-top: 12px;
      }
 
      .khl-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }
    }
.khl-rates {
  background: #f7f8fa;
  padding: 5rem 0 4rem;
}
 
.khl-rates-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
 
/* ============================================================
   SECTION HEADER
   ============================================================ */
 
.khl-rates-header {
  text-align: center;
  margin-bottom: 2rem;
}
 
.khl-rates-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FD5806;
  background: rgba(253,88,6,0.08);
  border: 1px solid rgba(253,88,6,0.20);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
 
.khl-rates-eyebrow i { font-size: 13px; }
 
.khl-rates-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 14px;
  line-height: 1.2;
}
 
.khl-rates-desc {
  font-size: 14.5px;
  color: #5a6e7e;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}
 
/* ============================================================
   INCLUSIONS STRIP
   ============================================================ */
 
.khl-inclusions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0 2.5rem;
}
 
.khl-inclusion-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 0.5px solid rgba(85,146,85,0.30);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #3a5c3a;
}
 
.khl-inclusion-item i {
  font-size: 14px;
  color: #559255;
}
 
/* ============================================================
   TABLE BLOCK
   ============================================================ */
 
.khl-table-block {
  background: #ffffff;
  border-radius: 16px;
  border: 0.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
 
/* Colored label bar at top of each table */
.khl-table-label {
  padding: 10px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
 
.khl-table-label.orange {
  background: #FD5806;
  color: #fff;
}
 
.khl-table-label.blue {
  background: #088FC7;
  color: #fff;
}
 
.khl-table-label.green {
  background: #559255;
  color: #fff;
}
 
/* Table scroll wrapper */
.khl-table-wrap {
  overflow-x: auto;
}
 
/* ============================================================
   TABLE STYLES
   ============================================================ */
 
.khl-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
 
/* Header row */
.khl-table thead tr {
  background: #f0f4f8;
  border-bottom: 2px solid #e2e8f0;
}
 
.khl-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: #6a7d8e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
 
/* Body rows */
.khl-table tbody tr {
  border-bottom: 0.5px solid #f0f4f8;
  transition: background 0.18s;
}
 
.khl-table tbody tr:last-child {
  border-bottom: none;
}
 
.khl-table tbody tr:hover {
  background: #fef8f5;
}
 
.khl-table tbody td {
  padding: 14px 20px;
  color: #2d3a44;
  vertical-align: middle;
  white-space: nowrap;
}
 
/* Vehicle name column — icon */
.khl-table tbody td:first-child {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a2632;
}
 
.khl-table tbody td:first-child i {
  font-size: 16px;
  color: #088FC7;
  flex-shrink: 0;
}
 
/* Wide table (sightseeing) — td not flex */
.khl-table-wide tbody td:first-child {
  display: table-cell;
}
 
.khl-table-wide tbody td:first-child i {
  margin-right: 6px;
  vertical-align: -2px;
}
 
/* Highlighted row */
.khl-row-highlight {
  background: rgba(253,88,6,0.04) !important;
}
 
.khl-row-highlight td:first-child i {
  color: #FD5806 !important;
}
 
/* Price cell */
.khl-price {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FD5806;
}
 
/* ============================================================
   BOOK BUTTON
   ============================================================ */
 
.khl-book-btn {
  display: inline-flex;
  align-items: center;
  background: #FD5806;
  color: #fff;
  border-radius: 7px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(253,88,6,0.25);
}
 
.khl-book-btn:hover {
  background: #e04e05;
  color: #fff;
  transform: translateY(-1px);
}
 
/* ============================================================
   BOTTOM CTA BANNER
   ============================================================ */
 
.khl-rates-cta {
  margin-top: 3rem;
  background: #0d1117;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
 
/* Gradient accent bar on left edge */
.khl-rates-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #FD5806, #088FC7, #559255);
}
 
.khl-rates-cta-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
 
.khl-rates-cta-text p {
  font-size: 13.5px;
  color: #6a8294;
}
 
.khl-rates-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
 
.khl-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FD5806;
  color: #fff;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(253,88,6,0.35);
}
 
.khl-cta-primary:hover { background: #e04e05; color: #fff; }
 
.khl-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
 
.khl-cta-outline:hover {
  border-color: #088FC7;
  background: rgba(8,143,199,0.12);
  color: #fff;
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
 
@media (max-width: 768px) {
  .khl-rates { padding: 3rem 0 2.5rem; }
 
  .khl-table thead th,
  .khl-table tbody td { padding: 12px 14px; font-size: 13px; }
 
  .khl-rates-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }
}
 
@media (max-width: 480px) {
  .khl-rates-cta-btns { flex-direction: column; width: 100%; }
  .khl-cta-primary, .khl-cta-outline { width: 100%; justify-content: center; }
  .khl-inclusions { gap: 8px; }
}

.khl-main-slider.khl-desktop-slider {
  display: block;
  position: relative;
}
 
/* Bottom gradient accent bar */
.khl-main-slider.khl-desktop-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FD5806 0%, #088FC7 50%, #559255 100%);
  z-index: 20;
}
 
/* Slide image */
.khl-main-slider .khl-slider-image {
  height: 580px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}
 
/* ---- Desktop Caption Overlay ---- */
.khl-desktop-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  /* Dark gradient left side for text legibility */
  background: linear-gradient(
    90deg,
    rgba(13,17,23,0.82) 0%,
    rgba(13,17,23,0.50) 50%,
    rgba(13,17,23,0.05) 100%
  );
}
 
.khl-desktop-caption-inner {
  max-width: 580px;
  padding: 0 0 0 72px;
}
 
/* Badge */
.khl-desk-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(253, 88, 6, 0.20);
  border: 1px solid rgba(253, 88, 6, 0.50);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
/* Main heading */
.khl-desk-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
 
.khl-desk-title span {
  color: #FD5806;
}
 
/* Subtitle */
.khl-desk-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 460px;
}
 
/* Price row */
.khl-desk-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
 
.khl-desk-price strong {
  color: #FD5806;
  font-size: 20px;
  font-weight: 700;
}
 
/* CTA buttons */
.khl-desk-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
 
.khl-desk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FD5806;
  color: #fff;
  border-radius: 8px;
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(253,88,6,0.40);
}
 
.khl-desk-btn-primary:hover {
  background: #e04e05;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
 
.khl-desk-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  padding: 11px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
 
.khl-desk-btn-outline:hover {
  background: rgba(8,143,199,0.20);
  border-color: #088FC7;
  color: #fff;
  text-decoration: none;
}
 
/* Prev / Next arrows */
.khl-main-slider .khl-prev-btn,
.khl-main-slider .khl-next-btn {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  opacity: 1;
  z-index: 15;
}
 
.khl-main-slider .khl-prev-btn { left: 24px; }
.khl-main-slider .khl-next-btn { right: 24px; }
 
.khl-main-slider .khl-prev-btn:hover,
.khl-main-slider .khl-next-btn:hover {
  background: #FD5806;
  border-color: #FD5806;
}
 
.khl-main-slider .carousel-control-prev-icon,
.khl-main-slider .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}
 
/* ============================================================
   MOBILE SLIDER
   ============================================================ */
 
.khl-mobile-slider.khl-banner-slider {
  display: none;
  position: relative;
}
 
.khl-mobile-slider .khl-mobile-image {
  height: 520px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.60);
}
 
/* Caption box */
.khl-mobile-slider .khl-caption-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  text-align: left;
  padding: 0 40px 60px;
  background: linear-gradient(to top,
    rgba(13,17,23,0.92) 0%,
    rgba(13,17,23,0.55) 55%,
    transparent 100%
  );
}
 
/* Price badge */
.khl-mobile-slider .khl-price-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(253,88,6,0.18);
  border: 1px solid rgba(253,88,6,0.45);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
 
.khl-mobile-slider .khl-price-text strong,
.khl-mobile-slider .khl-price-text span {
  color: #FD5806;
  font-weight: 700;
}
 
/* Slide heading */
.khl-mobile-slider .khl-caption-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
 
/* Booking button */
.khl-mobile-slider .khl-booking-btn {
  display: inline-flex;
  align-items: center;
  background: #FD5806;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 4px 18px rgba(253,88,6,0.35);
}
 
.khl-mobile-slider .khl-booking-btn:hover {
  background: #e04e05;
  transform: translateY(-1px);
}
 
.khl-mobile-slider .elementor-button-text {
  display: block;
}
 
/* Carousel indicators */
.khl-mobile-slider .carousel-indicators {
  bottom: 18px;
  margin: 0;
  gap: 6px;
  justify-content: flex-start;
  padding-left: 40px;
}
 
.khl-mobile-slider .carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  margin: 0;
  transition: background 0.3s, width 0.3s;
  flex-shrink: 0;
}
 
.khl-mobile-slider .carousel-indicators li.active {
  background: #FD5806;
  width: 24px;
  border-radius: 4px;
}
 
/* Prev / Next arrows mobile */
.khl-mobile-slider .carousel-control-prev,
.khl-mobile-slider .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.25s;
}
 
.khl-mobile-slider .carousel-control-prev { left: 12px; }
.khl-mobile-slider .carousel-control-next { right: 12px; }
 
.khl-mobile-slider .carousel-control-prev:hover,
.khl-mobile-slider .carousel-control-next:hover {
  background: #088FC7;
  border-color: #088FC7;
}
 
.khl-mobile-slider .carousel-control-prev-icon,
.khl-mobile-slider .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}
 
/* ============================================================
   RESPONSIVE — show/hide
   ============================================================ */
 
@media (max-width: 767px) {
  .khl-main-slider.khl-desktop-slider  { display: none !important; }
  .khl-mobile-slider.khl-banner-slider { display: block !important; }
}
 
@media (max-width: 480px) {
  .khl-mobile-slider .khl-mobile-image  { height: 420px; }
  .khl-mobile-slider .khl-caption-box   { padding: 0 20px 52px; }
  .khl-mobile-slider .carousel-indicators { padding-left: 20px; }
  .khl-mobile-slider .khl-booking-btn   { font-size: 12.5px; padding: 10px 16px; }
}
.modal-backdrop{
    display:none !important;
}
.tt-form-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#123a5a;
}

.form-me{
    height:56px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,0.08);
    padding:12px 18px;
    font-size:15px;
    box-shadow:none !important;
}

.form-me:focus{
    border-color:#157079;
    box-shadow:0 0 0 4px rgba(31,166,166,0.12) !important;
}

.tt-submit-btn{
    background:#157079 !important;
    border:none !important;
    padding:14px 38px !important;
    border-radius:50px !important;
    font-weight:600;
    font-size:15px;
    transition:all .3s ease;
}

.tt-submit-btn:hover{
    background:#1fa6a6 !important;
    transform:translateY(-2px);
}
.khl-topbar {
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  z-index: 1000;
}
 
.khl-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
 
/* Left side */
.khl-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
 
.khl-topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FD5806;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
.khl-topbar-tag i { font-size: 14px; }
 
.khl-topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
  display: inline-block;
}
 
.khl-topbar-info {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #6a7d8e;
}
 
.khl-topbar-info i { font-size: 13px; color: #559255; }
 
/* Right side */
.khl-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
 
.khl-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #7a94a8;
  transition: color 0.2s;
}
 
.khl-topbar-link i { font-size: 13px; }
 
.khl-topbar-link:hover { color: #088FC7; }
 
.khl-topbar-phone {
  color: #c8d4de;
  font-weight: 500;
}
 
.khl-topbar-phone i { color: #FD5806; }
.khl-topbar-phone:hover { color: #FD5806; }
 
.khl-topbar-wa i  { color: #25D366; }
.khl-topbar-wa:hover { color: #25D366; }
 
/* Hide topbar on very small screens */
@media (max-width: 600px) {
  .khl-topbar { display: none; }
}
 
 
/* ============================================================
   MAIN HEADER
   ============================================================ */
 
.khl-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
 
.khl-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
 
/* Accent stripe under header */
.khl-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #FD5806 0%, #088FC7 50%, #559255 100%);
}
 
.khl-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
 
/* ---------- Logo ---------- */
.khl-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
 
.khl-logo img {
  height: 57px;
  width: auto;
  display: block;
  object-fit: contain;
}
 
/* ---------- Nav ---------- */
.khl-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
 
.khl-nav-list {
  display: flex;
  list-style:none !important;
  align-items: center;
  gap: 4px;
}
 
.khl-nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3a4a58;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
 
.khl-nav-link:hover {
  color: #088FC7;
  background: rgba(8, 143, 199, 0.07);
}
 
.khl-nav-item.active .khl-nav-link {
  color: #FD5806;
  font-weight: 500;
}
 
/* ---------- Header Actions ---------- */
.khl-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
 
.khl-header-call {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(253,88,6,0.3);
  background: rgba(253,88,6,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FD5806;
  font-size: 17px;
  transition: background 0.2s, border-color 0.2s;
}
 
.khl-header-call:hover {
  background: rgba(253,88,6,0.12);
  border-color: #FD5806;
}
 
.khl-btn-enquire {
  background: #FD5806;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
 
.khl-btn-enquire:hover {
  background: #e04e05;
  color: #fff;
}
 
.khl-btn-enquire:active {
  transform: scale(0.98);
}
 
 
/* ---------- Hamburger ---------- */
.khl-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  cursor: pointer;
}
 
.khl-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #3a4a58;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
 
.khl-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
 
.khl-hamburger.active span:nth-child(2) {
  opacity: 0;
}
 
.khl-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
 
 
/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
 
.khl-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
 
.khl-mobile-nav.open {
  max-height: 600px;
  padding: 1rem 1.5rem 1.5rem;
}
 
.khl-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1rem;
}
 
.khl-mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #3a4a58;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
 
.khl-mobile-link:hover,
.khl-mobile-link.active {
  background: rgba(253,88,6,0.07);
  color: #FD5806;
}
 
.khl-mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 1rem;
}
 
.khl-mobile-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a6e7e;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s;
}
 
.khl-mobile-contact-link i { color: #088FC7; font-size: 15px; }
.khl-mobile-contact-link:hover { color: #088FC7; }
 
.khl-btn-enquire.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 14px;
}
 
 
/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
 
@media (max-width: 960px) {
  .khl-nav { display: none; }
  .khl-hamburger { display: flex; }
  .khl-mobile-nav { display: flex; }
  .khl-header-call { display: none; }
}
 
@media (max-width: 480px) {
  .khl-header-inner { padding: 0 1.25rem; }
  .khl-logo img { height: 55px; }
  .khl-btn-enquire:not(.mobile-cta) { display: none; }
}
.khl-footer {
  background: #0d1117;
  color: #e8ecf0;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}
 
/* ---------- Accent Bar ---------- */
.khl-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #FD5806 0%, #088FC7 50%, #559255 100%);
}
 
/* ---------- Footer Grid ---------- */
.khl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 2.5rem;
  padding: 3rem 2.5rem 2rem;
}
 
@media (max-width: 900px) {
  .khl-footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.5rem 1.5rem;
  }
}
 
@media (max-width: 580px) {
  .khl-footer-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
 
/* ---------- Column ---------- */
.khl-col {}
 
/* ---------- Eyebrow ---------- */
.khl-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #FD5806;
  margin-bottom: 0.4rem;
  font-family: 'Syne', sans-serif;
}
 
/* ---------- Column Title ---------- */
.khl-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #FD5806;
  display: inline-block;
}
 
/* ---------- Contact Items ---------- */
.khl-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
}
 
.khl-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(253, 88, 6, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.khl-contact-icon i {
  font-size: 17px;
  color: #FD5806;
}
 
.khl-contact-label {
  font-size: 10.5px;
  color: #6a7d8e;
  margin-bottom: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
 
.khl-contact-value {
  font-size: 13px;
  color: #b8c8d4;
  line-height: 1.6;
}
 
.khl-contact-value a {
  color: #7ab8d8;
  transition: color 0.2s;
}
 
.khl-contact-value a:hover {
  color: #088FC7;
}
 
/* ---------- Social Row ---------- */
.khl-social-row {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
 
.khl-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
 
.khl-social-btn:hover {
  background: rgba(8, 143, 199, 0.18);
  border-color: #088FC7;
}
 
.khl-social-btn i {
  font-size: 17px;
  color: #7a96a8;
  transition: color 0.2s;
}
 
.khl-social-btn:hover i {
  color: #088FC7;
}
 
/* ---------- Trust Grid ---------- */
.khl-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}
 
.khl-trust-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
 
.khl-trust-badge:hover {
  background: rgba(255, 255, 255, 0.07);
}
 
.khl-trust-badge i {
  font-size: 22px;
}
 
.khl-trust-badge .tb-name {
  font-size: 11px;
  font-weight: 500;
  color: #6a7d8e;
}
 
.khl-trust-badge .tb-rating {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
 
/* Badge-specific icon colors & rating colors */
.khl-trust-badge.tripadvisor i  { color: #34E0A1; }
.khl-trust-badge.tripadvisor .tb-rating { color: #34E0A1; }
 
.khl-trust-badge.google i       { color: #4285F4; }
.khl-trust-badge.google .tb-rating { color: #4285F4; }
 
.khl-trust-badge.justdial i     { color: #FD5806; }
.khl-trust-badge.justdial .tb-rating { color: #FD5806; }
 
.khl-trust-badge.tourism i      { color: #088FC7; }
.khl-trust-badge.tourism .tb-rating { color: #088FC7; }
 
/* ---------- License Badge ---------- */
.khl-license-badge {
  background: rgba(85, 146, 85, 0.1);
  border: 0.5px solid rgba(85, 146, 85, 0.28);
  border-radius: 10px;
  padding: 14px 16px;
}
 
.khl-license-title {
  font-size: 12px;
  font-weight: 500;
  color: #559255;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.khl-license-title i {
  font-size: 14px;
}
 
.khl-license-desc {
  font-size: 12px;
  color: #446b44;
  line-height: 1.55;
}
 
/* ---------- Map ---------- */
.khl-map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  height: 220px;
}
 
.khl-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
 
.khl-address-pill {
  margin-top: 12px;
  background: rgba(8, 143, 199, 0.09);
  border: 0.5px solid rgba(8, 143, 199, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
 
.khl-address-pill i {
  color: #088FC7;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
 
.khl-address-pill span {
  font-size: 12px;
  color: #7a94a8;
  line-height: 1.55;
}
 
/* ---------- Divider ---------- */
.khl-divider {
  margin: 0 2.5rem;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.07);
}
 
@media (max-width: 580px) {
  .khl-divider {
    margin: 0 1.25rem;
  }
}
 
/* ---------- Footer Bottom ---------- */
.khl-footer-bottom {
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
 
@media (max-width: 580px) {
  .khl-footer-bottom {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
 
/* ---------- Brand ---------- */
.khl-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
 
.khl-brand-name span {
  color: #FD5806;
}
 
.khl-copyright {
  font-size: 12px;
  color: #3d5060;
}
 
/* ---------- CTA Buttons ---------- */
.khl-cta-btns {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
 
.khl-btn-primary {
  background: #FD5806;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  text-decoration: none;
}
 
.khl-btn-primary:hover {
  background: #e04e05;
}
 
.khl-btn-outline {
  background: transparent;
  color: #088FC7;
  border: 0.5px solid #088FC7;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  text-decoration: none;
}
 
.khl-btn-outline:hover {
  background: rgba(8, 143, 199, 0.1);
}
.whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      font-size: 16px;
      font-weight: bold;
      padding: 10px 15px;
      border-radius: 50px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      text-decoration: none;
      z-index: 1000;
    }

    .whatsapp-button img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
    }

    .whatsapp-button:hover {
      background-color: #1ebe57;
    }
    
body {
    color: #777;
    font-family: 'Quicksand';
    font-weight:900;
    overflow-x:hidden;
}

.topHeader {
    background: #e2e1e3;

    color: #fff;
    color:red;
    padding: 9px;
}
.ffm{
    display:none !important;
}
 .on{color: #000 !important;
    font-weight: bold;
 }
 .othr{
     background:#934A5F;
 }
.neww{
    display:none !important;
}
.topHeadernew  .bg-danger{
        font-size: 35px;
    float: left;
    margin-top: 40px;
    font-family: cursive;
}
.topHeadernew .bg-primary{
        font-size: 34px;
    margin-top: 37px;
    width: 265px;
    font-family: cursive;
    color: yellow !important;
}
.topHeadernew {
    padding: 20px 0px;
    text-align: center;
}
.topHeader ul {
    padding: 4px !important;
    margin: 4px auto;
    background: #f9f9f9 !important;
}
.topHeadernew img {
    width: 53% !important;
}
.topHeader ul li{
    display:inline-block;
}
.top-cta-blue h1{
background: #fff;
    margin: 30px;
    border-radius: 50px;
    font-size: 29px;
    padding: 10px 0px;
    color: red;
    width: 67%;
    margin: 29px auto;
}
.rate p{
    font-size: 20px;
    line-height: 33px;
}
.table td, .table th {
    padding: 7px !important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.online {
    box-shadow: 0px 5px 8px #ddd;
    padding: 20px;
    min-height: 240px;
    margin-bottom: 25px;
}
#contact1 h1{
    font-size: 74px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 5px 8px #000;
}
#footer .col-md-6{
    margin-bottom:10px !important;
}
.small{
    display:none !important;
}
#gallery{
    padding-bottom:0px !important;
}
#blog .owl-nav {
    background:#fff;
    width: 7%;
    color: #000;
    text-align: center;
    padding: 13px;
    /*border-radius:1rem;*/

}
.top-cta-blue p {
    color:#000;
}
#gallery .owl-nav{
      background: #000;
    width: 7%;
    color: #fff;
    text-align: center;
    padding: 13px;
}
#blog{
    padding-top:30px !important;
}
.owl-next{
    font-size: 75px;
}
.owl-prev{
     font-size: 75px;
}
.topHeader a{
    color:#fff !important;
    
}
.topHeader a{
    color:#fff !important;
}

#services h3, #services h5, #services h2{
    /*color:#000 !important;*/
    font-size:28px;

}

#review h2,#review h5,#review h3{
    color:#fff !important;
}
#blog p{
    color:#000 !important;
}
.rate{
    margin-bottom:20px !important;
}
.book_part h2 {
    font-size: 20px !important;
    text-align: center;
    font-weight: bold;
    margin-bottom: 11px;
}
.book_part .col-md-3{
    padding:0px 20px;
}
.book_part{
    padding:45px 0px !important;
}
#packages h2,#packages h5{
   
     margin-bottom: 11px;
}
.newpara{
    
    padding: 48px 0px;
    background: #f9f9f9;
}
.para_one dl, ol, ul {
    padding: 10px 37px !important;
    /* margin: 0; */
    list-style: circle !important;
}
.para_one{
        box-shadow: 0px 5px 8px #ddd;
    padding: 20px;
}
#services h1 {
    color: #000;
    font-size: 27px;
    font-weight: bold;
    color: #64169F !important;
}

#gallery img{
    margin-bottom:10px !important;
}
.sliderText h3{
    text-transform:capitalize;
    font-size: 25px;
}
form p{
    color:#000 !important;
}
.section-white .form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#review .item .avatar img {
    display: block;
    /* width: 100%; */
    width: 100px !important;
    margin: 0 auto;
    border-radius: 50%;
}

.container {
    max-width: 1276px !important;
}
.navbar-nav{
    padding-top: 7px;
}


.icon i {
    font-size: 21px;
    /* padding-top: 14px; */
    margin-right: 10px;
}
.icon{
        float: left;
    font-size: 30px;
    margin-left: 20px;
}
.equir{
    padding-top: 11px;
}
.sliderText h1{
    font-size: 57px !important;
}
a{
  color: #777; 
 font-family: 'Quicksand';
}
.sliderText {
    position: absolute;
    width: 100%;
    top: 335px;
}
.sliderText h1, .sliderText h2, .sliderText h3, .sliderText p {
    color: #fff !important;
    font-family: century gothic !important;
    font-weight: bold;
    padding: 4px;
}
.section-title h5 {
	color: #333;
	font-weight: 300;
	margin-bottom: 10px;
	letter-spacing: 0.7px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}
.policy{
    margin-top:20px;
}
.logo{
     border-radius: 66px 66px 0px 0px;
    margin-top: 7px;

}
h1,h2, h3, h4{
          font-family: "Arial", sans-serif; /* Changed font family */

    /*text-transform: uppercase;*/
}
p,a{
    font-family: Arial", sans-serif!important;
    font-weight:normal;
    
    
}
.policy h1, .policy h2{
    font-size:26px;
}
.zuba {
    margin-top: 20px;
    width: 193px;
    height: 46px;
    background: #934A5F;
    color: #fff;
    font-size: 16px;
}
.equir a{
    color:#fff !important;
}
.navbar-nav a {
     color: #000 !important;
    font-size: 17px !important;
    line-height: 30px !important;
    padding: 10px 16px !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.foot-sticky {
    display:none !important;
    background: #E7D9B6;
    text-align: center;
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 1543px;
    padding-top: 17px;
    padding-bottom: 14px;
}
.foot-sticky .btn-blue {
    border: 1px solid;
    background-color: none;
    color: #000!important;
    padding: 7px;
    font-size: 15px !important;
    border-radius: 20px;
    font-family: verdana;
}
.foot-sticky a {
    font-size: 18px;
    background: #F50808;
    background: none;
    color: #000 !important;
    margin-left: 46px;
}
.foot-sticky i{
    font-size:20px !important;
}
.navbar {
    width: 100%;
   background-color: #E7D9B6;
}

.home-benefits {
    list-style: none;
    line-height: 2.5;
}

.home-section {
    margin-top: 60px;
}

.far,
.fa-phone {
    font-size: 50px;
}

.hero-text {
    line-height: 2em;
    text-align: justify;
}

.register-form-wrapper {
    background-color: #934A5F;
    color: #000;
    padding: 20px;
    border-radius: 0px;
}

.register-form-wrapper p,
.register-form-wrapper h3 {
    color: #000;
}

.register-form-wrapper button {
    background-color: #cdb064;
    border-color: #906b3e;
}

.width-100 {
    max-width: 100%;
}
#features img {
    width: 100px;
    border-radius: 50%;
}
.top-cta-blue {
    text-align: center;
    background: #515251;
    padding: 28px;
    margin-top: 13px;
}
#features .main-services {
        padding: 10px;
    min-height: 150px;
}

#services a {
    font-size: 17px;
    color: #fff;
}

/*#services p {
    text-align: center;
    font-size: 24px;
    margin-top: 7px;
    color: #F8B35C;
}*/

#services p {
    text-align: center;
    font-size: 18px;
    margin-top: 4px;
    /*color: #000;*/
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    background: #F8B35C;
    width: 88%;
}
#services a:hover {
    text-decoration: none;
}

.back{
    background-image: url(../images/image.jpg);
    background: cover;
    width:100%;
    height: 100%;
}
    .top-cta-blue {
        text-align: center;
        background: #f9f9f9;
        padding: 0px;
        margin-top: 13px;
    }
.social_icon_img .widget_block {
    position: fixed;
    bottom: 126px;
    left: 0px;
    list-style: none !important;
    border-radius: 7px;
    z-index: 99999;
    display:none !important;
}
.social_icon_img .fa-whatsapp {
    font-size: 31px !important;
    padding-top: 16px;
    color: #fff !important;
    /* background: green; */
    border-radius: 50%;
    width: 71px;
    padding-top: 14px !important;
    height: 60px;
    text-align: center;
    margin-bottom: 20px;
}
 .social_icon_img ul li {
    list-style: none !important;
    margin-bottom: 10px !important;
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1);
    margin-top: -14px !important;
}
.social_icon_img .cl{
    font-size: 27px !important;
    padding-top: 16px;
    color: #fff;
    background: #FFA500;
    border-radius: 50%;
    padding-top: 1px !important;
    width: 60px;
    height: 60px;
    text-align: center;
}
.social_icon_img .fa-bkk {
    font-size: 15px !important;
    padding-top: 16px !important;
    color: #fff;
    background: #a81d1d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
}
.footer-bottom #block-5 ul {
    padding-left: 10px;
}
 .back img{
     margin-top:20px;
     margin-bottom:20px;
 }
 
.top-cta-blue img {
    border: 1px solid #ddd;
    background: #f6efef;
    padding: 4px;
  
    padding: 6px;
}
.back h1{
    margin-top:56px;
    color:#fff;
}
.back p{
    margin-bottom:30px;
    color:#fff;
}
.btn-blue small scrool {
    font-size: 16px;
    padding: 14px 20px;
    border: 1px solid;
}
.main-services .meals i{
    font-size: 30px;
    color: #F8B35C;
}
.meals{
    padding-left:15px;
     padding-right:15px;
}
.email2 {
    /* padding: 2px 15px; */
    background: #0e9e36;
    padding: 6px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: normal;
    font-family: century gothic;
}
.email2:hover{
    color:#fff;
}
.top-cta-blue {
    color: #fff;
    font-size: 26px;
    margin-top: 0px;
}
.top-cta-blue .zuba a {
    color: #fff;
    font-family: century gothic;
    font-size: 21px;
    font-weight: bold;
    /* margin: 0px; */
}
.top-cta-blue h5 {
    font-size: 40px;
    margin-top: 20px;
    font-family: cursive;
    color: #5e49cc;
    margin-bottom: 10px;
}
.top-cta-blue a {
    color: #fff;
}
#packages .btn-blue {
    background-color: #934A5F;
    color: #fff !important;
    padding: 7px;
    padding-left: 18px;
    display: block !important;
    padding-right: 20px;
    font-size: 17px !important;
    border-radius: 6px;
}

.main-services {
    margin-bottom: 10%;
    text-align: center;
    background: #F7F7F7;
    padding-bottom: 1em;
    border: 2px solid #F8B35C;
}
.main-services1 {
    margin-bottom: 10%;
    text-align: center;
    background: #F7F7F7;
    padding-bottom: 1em;
  
}
.testim-inner{
       border: 2px solid #9BC68C;
    padding: 10px;
    text-align: justify;
    min-height: 500px;
}

#testimonials {
    margin-top: 6%;
    margin-bottom: 6%;
}
#testimonials img {
   display: block;
    margin: 0 auto;
    margin-bottom: 1em;
    border-radius: 50%;
}
.small-col-inside {
        border: 1px solid;
    padding-bottom: 12px;
    padding: 10px;
   
}

.section-white no-padding img {
    border-radius: 10px 0px 0px 10px;
}
.small-col-inside h3{
        text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #9BC68C;
}

.header {
    /* background: #3221ae !important; */
    padding: 10px;
    background: none !important;
}
.card{
    border: none;
}
.card-header{
    border: none;
    background-color: none;
}
.section-white {
    /* margin-bottom: 6%; */
    padding: 35px 0px;
    position: absolute;
    width: 100%;
    top: 272px;
}
.navbar .navbar-brand img{width:170px;}
.services-wrapper i {
    font-size: 16px;
    color: #fff;
}
.section-grey h2{
        color: #9BC68C;
}
.services-wrapper{
    background-color: #f7f7f7;
padding-top: 10px;
}
.footer {
    background-color:#1F2B46;
    color: #934A5F;
    padding-top: 25px;
    margin-bottom: -149px;
}
.footer-bottom p{
    color: #fff
}
.footer a{
    color:#fff;
    
}
.footer i {
    font-size: 17px;
}
.footer h5{
    color: #fff
    
}
.section-title{
    color: #9BC68C;
}
.section-bg-2 a{
    color: #9BC68C;
}
.section-white button{
    color: #fff;
    font-weight: 600;
    width:100%;
}
#services h2 a {
    font-size: 16px;
    color: #934A5F;
}
.services-wrapper .main-services h3 {
    font-size: 16px;
    font-weight: bold;
    color: #b28955;
}

.contct {
  line-height: 5rem;
  padding: 10px;
  padding-top: 5%;  
  background-color: #f7f7f7f5;
  backdrop-filter: blur(10px); 
  border-radius: 15px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  border: 1px solid rgba(255, 255, 255, 0.3);

.contct h4{
    color: #9BC68C;
text-align: center;
font-weight: 600;
}
.top-header a i{
        font-size: 15px;
    color: #062F4E;
}
.top-header{
    text-align: center;
}
.navbar-collapse{
    
}
.btn-info {
    color: #fff;
    background-color: #934A5F;
}
.btn-secondary {
    color: #fff;
    background-color: #0E9E36;
    border-color: #0E9E36;
}
.top-header a{
          color: #062F4E;
    float: right;
    margin-left: 2em;
    margin-top:35px;
}
.form-control{
        margin-bottom: 10px;
    
}
.section-bottom-border button {
    background-color: #934A5F;
    border-color: #906b3e;
    width: 17%;
    font-size: 17px;
    /* margin-top: -33px; */
    /* margin: 0 auto !important; */
}
.accordion button{
    color: #000;
}
.sub{
    text-align:center;
}
#services{
       
}
.dmopMx svg{
    display: none;
}
.navbar-toggler-icon .fa-bars {
    color: #062F4E;
}
.text-white{
    color: #000 !important;
}
.d-none{
    display: block;
}
@media (max-width: 768px) {
  .top-header a {
    color: #062F4E;
    float: none;
    /* margin-bottom: 7px; */
    margin-left: 2em;
    margin-top: 11px;
    margin-bottom: 5px;
}
.ffm .container-fluid {
    width: 100%;
    padding-right: 0px !important;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
    .carousel-caption {
        position: absolute;
        right: 3% !important;
        bottom: -13px;
        left: 3% !important;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
    }
.ffm{
    display:inline-block !important;
}
     .ph {
         width:100%;
        background: #F58E35;
        padding: 14px 8px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
    }
    h2{
     font-size: 27px;;
    }
.ffm .col-md-6{
    padding:0px !important;
}
.ffm img{
        width: 30px;
    margin-right: 5px;
}
      .sap {
          width:100%;
        background: #008000;
        padding: 14px 16px;
        color: #fff;
        font-size: 16px;
        /* padding-right: 29px; */
        font-weight: bold;
    }
    .ffm {
        position: fixed;
        bottom: 0;
        left: 0px;
        width: 100%;
        z-index: 20000;
    }
.neww button{
    background-image: linear-gradient(149deg, #E67B1F 22%, #f2295b 61%);
}
     .neww h2 {
        color: #fff;
        text-shadow: 0px 5px 5px #000;
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 10px;
    }
.neww {
    display: block !important;
}
/*.mobile{
    background-image: url(./images/cab_mobile.jpg);
    width: 100%;
    height: 100%;
    background: cover !important;
    padding: 188px 0px;
    text-align: center;
    color: #fff;
}*/
.mob{
        background: url(./images/cab_mobile.jpg);
}
.topHeader li{
    text-align:left !important;
}
.top-cta-blue h1 {
    background: #fff;
    margin: 30px;
    border-radius: 50px;
    font-size: 21px;
    padding: 10px 0px;
    color: red;
    width: 100%;
    margin: 29px auto;
    border-radius: 0px;
}
    .top-cta-blue {
        text-align: center;
        background: #f9f9f9;
        padding: 0px;
        margin-top: 13px;
    }
.para_one dl, ol, ul {
    padding: 6px 10px !important;
    /* margin: 0; */
    list-style: circle !important;
}
.header img {
        max-width: 85%;
        float: left;
    }
.topHeadernew .bg-primary {
        font-size: 29px;
        margin-top: 10px;
        width: 220px;
        background: #981111 !important;
        font-family: cursive;
        color: #fff !important;
        border-radius: 20px 0px;
    }
.topHeadernew img {
    width: 100% !important;
}
      .topHeadernew .bg-danger {
        font-size: 21px;
        float: left;
        border-radius: 20px 0px;
        margin-top: 21px;
        font-family: inherit;
        width: 100%;
        background: green !important;
        padding: 10px;
        font-style: italic;
        font-weight: bold;
        color: yellow !important;
        border: 1px solid #000;
        box-shadow: 0px 5px 8px #000;
        margin-bottom: 10px;
    }
.frm .col-md-12{
    padding-left: 30px;
}
.navbar-nav{
    background:#000 !important;
}
.header {
     background: #fff; 
    padding: 10px;
}
#contact1 .col-md-5{
     padding-left: 34px !important;;
}
.row{
    margin-right:0px !important;
}
.container{
    padding-right:0px !important;
}
#contact1 .col-md-5{
   padding:-1 !important;
}
.rate .table .thead-dark{
    background:#000 !important;
    color:#fff !important;
}
.table td, .table th {
    padding: 8px !important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.rate table .tbody{
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border: 1px solid #ddd !important;
    text-align: left !important;
}
.online {
    box-shadow: 0px 5px 8px #ddd;
    padding: 20px;
    min-height: auto;
    margin-bottom: 25px;
}
#contact1 h1 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
    text-shadow: 0px 5px 8px #fff;
}
.section-white {
    /* margin-bottom: 6%; */
    padding: 35px 0px;
    position: static;
    width: 100%;
    top: 272px;
}
.small{
    display:block !important;
}
.big{
   display:none !important;
}
.icon {
    float: inherit;
    font-size: 30px;
    margin-left: 20px;
}
#blog .owl-nav {
    background: #000;
    width: 33%;
    color: #fff;
    text-align: center;
    padding: 13px;
}
#gallery .owl-nav {
    background: #000;
    width: 33%;
    color: #fff;
    text-align: center;
    padding: 13px;
}
.topHeader {
    color: #fff;
    padding: 7px;
    text-align: center;
}
.section-padding {
    padding: 45px 0;
}
    .header img{
    max-width: 85%;
    }
    
    .h3, h3 {
    font-size: 25px;
}
    .h1, h1 {
    font-size: 31px;
    margin-top: 10px;
}
    .register-form-wrapper {
    background-color: #934A5F;
    color: #000;
    padding: 20px;
    border-radius: 0px;
    margin-top: -43px;
}
    .back img{
        width:100%;
    }
    .testim-inner {
        margin-bottom: 14px;
    }

    .small-col-inside {
        border: 1px solid #9BC68C;
    
        margin-top: 26px;
        border-radius: 0px;
    }
    .section-white{
        margin-bottom: 0%;
    }
    .responsive-bottom-margins iframe{
            max-width: 100%;
    }
    .navbar-collapse{
        padding-top: 0px;
        padding-left: 0px;
    }
    .top-header a{
        margin-left: 0%;
        display: block;
    }
    .responsive-bottom-margins{
        margin-top: 26px;
    }

}
        

.fa-star{
    color: #FDCC0D;
}

.register-form-wrapper button {
    background-color: #0E9E36;
    border-color: #906b3e;
    width: 100%;
    color: #fff;
}


/*=========================
  Icons
 ================= */

/* footer social icons */
ul.social-network {
	list-style: none;
	display: inline;
	margin-left:0 !important;
	padding: 0;
}
ul.social-network li {
	display: inline;
	margin: 0 5px;
}


/* footer social icons */
.social-network a.icoRss:hover {
	background-color: #F56505;
}
.social-network a.icoFacebook:hover {
	background-color:#3B5998;
}
.social-network a.icoTwitter:hover {
	background-color:#33ccff;
}
.social-network a.icoGoogle:hover {
	background-color:#BD3518;
}
.social-network a.icoVimeo:hover {
	background-color:#0590B8;
}
.social-network a.icoLinkedin:hover {
	background-color:#007bb7;
}
.social-network a.icoRss:hover i, .social-network a.icoFacebook:hover i, .social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i, .social-network a.icoVimeo:hover i, .social-network a.icoLinkedin:hover i {
	color:#fff;
}
a.socialIcon:hover, .socialHoverClass {
	color:#44BCDD;
}

.social-circle li a {
	display:inline-block;
	position:relative;
	margin:0 auto 0 auto;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	text-align:center;
	width: 50px;
	height: 50px;
	font-size:20px;
	background:none !important;
}
.social-circle li i {
    margin: 0;
    line-height: 50px;
    text-align: center;
    font-size: 1em;
}

.social-circle li a:hover i, .triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}
.social-circle i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}

.social-network a {
 background-color: #ffffff44;   
}
@media(max-width:500px){
   .foot-sticky a {
    font-size: 18px !important;
    background: #F50808;
    background: none;
    color: #000 !important;
    margin-left: 10px; 
}

      .neww .btn {
        display: inline-block;
        font-weight: 400;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 15px;
        text-shadow: 0px 5px 8px #1f1e1e;
        line-height: 1.5;
        border-radius: 20px;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }
     .neww p {
        text-align: center;
        text-shadow: 0px 5px 8px #000000;
        font-size: 18px;
    }
.bg-danger{
    width: 100%;
    font-size: 20px;
}
.bg-primary {
    background-color: #007bff !important;
    margin-bottom: 10px;
    width: 100%;
    font-size: 24px;
}
.sliderText h1 {
    font-size: 21px !important;
    margin: 18px 4px;
}
.text-left {
    text-align: center !important;
}
.foot-sticky {
    width: 100%;
    margin-right: 0px;
}
#features{
    margin-top:20px;
}
}

