    :root {
      --primary: #ff7a00;
      --primary-dark: #e06600;
      --navy: #061228;
      --navy-soft: #0b1630;
      --bg: #f5f7fb;
      --card: #ffffff;
      --border: #d6d9e3;
      --text-main: #111827;
      --text-muted: #6b7280;
      --radius-lg: 14px;
      --radius-md: 10px;
      --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.18);
      --transition: 180ms ease-out;
    }

    * {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
      background: var(--bg);
      color: var(--text-main);
    }

    /* HEADER / NAV */
    .site-header {
      background: var(--navy);
      color: #fff;
      padding: 18px 24px;
      position: sticky;
      top: 0;
      z-index: 20;
    }
.brand-logo img {
  max-width: 120px !important;
}
    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #ffd7a6, #ff7a00);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #111827;
    }

    .brand-text-main {
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .brand-text-sub {
      font-size: 12px;
      opacity: 0.75;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border-radius: 999px;
      border: none;
      cursor: pointer;
      padding: 8px 18px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: background var(--transition), box-shadow var(--transition),
        transform var(--transition), color var(--transition);
      text-decoration: none;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(255, 122, 0, 0.5);
    }

    .btn-ghost {
      background: transparent;
      color: #e5e7eb;
      border: 1px solid rgba(249, 250, 251, 0.25);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.4);
    }
/* banner */
.banner-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #09132C 0%, rgba(9, 19, 44, 0) 100%);
  z-index: 0;
}
.banner-container {
  position: relative;
}
.banner-txt {
  max-width: 27%;
  position: absolute;
  top: 100px;
  bottom: 0;
}
.banner-txt {
  max-width: 1120px;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  left: 0;
  display: flex;
  align-items: center;
}
.banner-para h1 {
  font-weight: 500;
  font-size: 50px;
}
.banner-para {
  max-width: 54%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.banner-para a {
  margin-top: 40px;
}
/* logo slider */
.logo-txt {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}
.logo-txt p{
  text-align: center;
}
.logo-slider {
  padding: 50px 20px;
}
.map {
  background: #EEE;
   padding: 50px 20px;
}
.list-map li {
  list-style: none;
  padding-left: 20px;
}
.list-map {
  display: flex;
  justify-content: right;
}

.map img {
  padding-top: 100px;
}
.scale-section {
  text-align: center;
  background: var(--primary);
  padding: 50px 20px;
}
.scale-txt h2 {
  color: var(--card);
}
.loader {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;
}
.count {
  font-size: 30px;
  color: var(--card);
  font-weight: 700;
}
    /* HERO */
    .hero {
      background: radial-gradient(circle at top left, #0b1630 0, #020617 55%);
      color: #fff;
      padding: 32px 16px 40px;
    }

    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-title {
      font-size: clamp(28px, 4vw, 34px);
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    .hero-sub {
      font-size: 15px;
      color: rgba(226, 232, 240, 0.9);
      max-width: 460px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 18px;
      font-size: 12px;
    }

    .pill {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e2e8f0;
    }

    .hero-micro {
      font-size: 12px;
      color: rgba(148, 163, 184, 0.9);
    }

    .hero-card {
      background: #020617;
      border-radius: 18px;
      padding: 16px 18px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
    }

    .hero-card-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 12px;
    }

    .hero-stat-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(148, 163, 184, 0.9);
    }

    .hero-stat-value {
      font-weight: 600;
      font-size: 15px;
      color: #e5e7eb;
    }

    .hero-card-tag {
      font-size: 11px;
      color: rgba(148, 163, 184, 0.9);
      text-align: right;
    }

    /* MAIN WRAPPER */
    .page-main {
      padding: 26px 16px 40px;
    }

    .page-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    /* STEPPER + CARD */
    .booking-card {
      background: var(--card);
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border);
      padding: 22px 20px 20px;
      margin-bottom: 32px;
    }

    .booking-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .booking-title {
      font-size: 18px;
      font-weight: 600;
    }

    .booking-subtitle {
      font-size: 13px;
      color: var(--text-muted);
    }

    .stepper {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .step-pill {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #f9fafb;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .step-pill span {
      display: inline-block;
    }

    .step-pill--active {
      background: rgba(255, 122, 0, 0.06);
      border-color: rgba(255, 122, 0, 0.6);
      color: var(--primary-dark);
    }

    .step-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--border);
    }

    .step-dot--active {
      background: var(--primary);
    }

    /* FORM LAYOUT */
    .form-grid {
      display: grid;
      gap: 18px;
    }

    .form-two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 840px) {
      .form-two-col {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .panel {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 16px 16px 14px;
      background: #ffffff;
    }

    .panel-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .panel-badge {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    .field-row {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 10px;
    }

    .field-row + .field-row {
      margin-top: 10px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 8px;
    }

    .field-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .field-label span {
      color: #ef4444;
    }

    .field-input,
    .field-select {
      border-radius: 9px;
      border: 1px solid var(--border);
      padding: 9px 10px;
      font-size: 13px;
      outline: none;
      transition: border var(--transition), box-shadow var(--transition),
        background var(--transition);
      background: #f9fafb;
    }

    .field-input:focus,
    .field-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.35);
      background: #ffffff;
    }

    .field-hint {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* PACKAGE AREA */
    .package-row {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 18px;
      padding-top: 6px;
    }

    @media (max-width: 840px) {
      .package-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      border-radius: 999px;
      border: 1px solid var(--border);
      padding: 4px 10px;
      font-size: 12px;
      cursor: pointer;
      background: #f9fafb;
      color: var(--text-muted);
      transition: background var(--transition), border var(--transition),
        color var(--transition);
    }

    .chip input {
      display: none;
    }

    .chip--active,
    .chip:hover {
      background: rgba(255, 122, 0, 0.06);
      border-color: var(--primary);
      color: var(--primary-dark);
    }

    .actions-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .actions-row .left-text {
      font-size: 12px;
      color: var(--text-muted);
    }

    .actions-row-right {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--navy);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background: #f3f4f6;
    }

    /* STEP CONTENT VISIBILITY */
    .step-content {
      display: none;
    }
    .step-content.is-active {
      display: block;
    }

    /* RATES SECTION */
    .rates-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 6px;
    }

    @media (max-width: 720px) {
      .rates-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .rate-card {
      border-radius: var(--radius-lg);
      background: #ffffff;
      border: 1px solid var(--border);
      padding: 16px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .rate-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .rate-title {
      font-size: 15px;
      font-weight: 600;
    }

    .rate-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .rate-amount {
      font-size: 22px;
      font-weight: 700;
    }

    .rate-tax {
      font-size: 12px;
      color: var(--text-muted);
    }

    .rate-meta {
      font-size: 11px;
      color: var(--text-muted);
    }

    .rate-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
      gap: 12px;
    }

    .rate-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* FOOTER */
    .page-footer {
      max-width: 1120px;
      margin: 0 auto;
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
@keyframes slide{
  from{
    transform:translateX(0) ;
    
  }
  to{
    transform:translateX(-100%) ;
  
  }
}
.logos{
  overflow:hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  white-space:nowrap;
  position:relative;
}

.logos:before,
.logos:after{
  content:"";
  position:absolute;
  top:0;
  width:250px;
  height:100%;
  z-index:2;
}
.logos:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), white);
}
.logos:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), white);
}


.logos:hover .logos-slide{
  animation-play-state:paused;
  
  
}
.logos-slide{
  display:inline-block;
  animation: 35s slide infinite linear;
}
.logos-slide img {
  height: 60px;
  margin: 0 20px;
}
    @media (max-width: 720px) {
      .page-footer {
        flex-direction: column;
        align-items: flex-start;
      }
    }
 