@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/*@import url('https://fonts.googleapis.com/css2?family=Montserrat|Ubuntu:wght@100;200;300;400;500;600;700;800;900&');*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");



@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */

  font-family: "Plus Jakarta Sans", sans-serif;

  background: #f4f6f9;

  color: #0f172a;

}



h1,

h2,

h3 {

  font-family: "Plus Jakarta Sans", sans-serif;

  margin: 0;

}



h4,

h5,

h6 {

  font-family: "Plus Jakarta Sans", sans-serif;

  margin: 0;

}



p {

  font-family: "Plus Jakarta Sans", sans-serif;

  margin: 0;

}



a {

  font-family: "Plus Jakarta Sans", sans-serif;

  text-decoration: none !important;

}



ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



li {

  font-family: "Plus Jakarta Sans", sans-serif;

}



.flex-1 {

  flex: 1;

}



.clearfix {

  margin: 0;

}



.fs-7 {

  font-size: 14px;

}



:root {

  --primary: #cb0a0a;

  --brand-orange: #ff000f;

  --surface: #fff8f3;

  --on-surface: #1d1b18;

  --on-surface-variant: #5c403a;

  --bg-color: linear-gradient(135deg, #cb0a0a 0%, #ff000f 100%);

}



.brand-orange {

  color: #ff000f;

}



/* Heading */



.heading-section {

  margin-bottom: 56px;

  display: flex;

  flex-direction: column;

  text-align: center;

  align-items: center;

  justify-content: center;

}

.heding-badge {

  display: inline-block;

  background: #fdece7;

  color: var(--brand-orange);

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: 0.5px;

  padding: 6px 16px;

  border-radius: 30px;

  margin-bottom: 16px;

}

.heding-title {

  font-size: clamp(28px, 4vw, 44px);

  color: #1a1a2e;

  /* margin-bottom: 16px; */

  line-height: 1.15;

  font-weight: 700;

}



.heding-title span {

  color: var(--brand-orange);

  font-family: "Caveat", cursive;

}

.heading-subtitle {

  font-size: 17px;

  color: #5a6070;

  line-height: 1.7;

  max-width: 580px;

  margin-bottom: 17px;

}



.left-align {

  align-items: flex-start;

  text-align: left;

  margin-bottom: 0;

}



.left-align .heding-title {

  font-size: 40px;

}



/* Sub Banner */



/* ===== Page banner ===== */

.srv-banner {

  position: relative;

  min-height: 340px;

  display: flex;

  align-items: center;

  margin-top: 80px;

}



.srv-banner::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    110deg,

    rgba(20, 6, 6, 0.94) 0%,

    rgba(204, 18, 29, 0.75) 55%,

    rgba(255, 106, 0, 0.45) 100%

  );

}



.srv-banner-content {

  position: relative;

  z-index: 2;

}



.srv-crumb {

  color: #f4d9d0;

  font-size: 13.5px;

  margin-bottom: 14px;

}



.srv-crumb a {

  color: #f4d9d0;

  text-decoration: none;

}



.srv-crumb i {

  font-size: 11px;

  margin: 0 6px;

}



.srv-banner h1 {

  font-weight: 800;

  font-size: 44px;

  color: #fff;

  margin-bottom: 12px;

}



.srv-banner p {

  color: #f4e9e4;

  font-size: 16px;

  max-width: 560px;

}



/* Header */



/*  NAVBAR  */

.header-transparent {

  background: transparent;

  transition: all 0.3s ease;

}



.header-scrolled {

  background-color: #fff !important;

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 2px 20px rgba(20, 33, 61, 0.08);

}



/* Nav link with animated underline */

.nav-link-custom {

  color: var(--on-surface-variant);

  font-weight: 600;

  text-decoration: none;

  transition: color 0.2s;

  position: relative;

  padding-bottom: 4px;

}



.nav-link-custom::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 0;

  height: 2px;

  background: var(--brand-orange);

  border-radius: 9999px;

  transition: width 0.3s ease;

}



.nav-link-custom:hover {

  color: var(--primary);

}



.nav-link-custom:hover::after {

  width: 100%;

}



.nav-link-custom.active {

  color: var(--on-surface);

}



.nav-link-custom.active::after {

  width: 100%;

  background: var(--primary);

}



/*  BUTTONS  */

.btn-primary-custom {

  background: var(--bg-color);

  color: #ffffff;

  border-radius: 9999px;

  padding: 0.75rem 2rem;

  border: none;

  font-weight: 600;

  position: relative;

  overflow: hidden;

  transition:

    transform 0.2s ease,

    box-shadow 0.2s ease;

  box-shadow: 0 4px 18px rgba(179, 33, 0, 0.32);

}



.btn-primary-custom:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 28px rgba(179, 33, 0, 0.48);

  color: #fff;

}



.btn-primary-custom::after {

  content: "";

  position: absolute;

  top: -50%;

  left: -60%;

  width: 40%;

  height: 200%;

  background: rgba(255, 255, 255, 0.22);

  transform: skewX(-20deg);

  transition: left 0.55s ease;

}



.btn-primary-custom:hover::after {

  left: 130%;

}



.btn-brand-orange {

  background: var(--bg-color);

  color: #ffffff;

  border-radius: 9999px;

  border: none;

  font-weight: 600;

  position: relative;

  overflow: hidden;

  transition:

    transform 0.2s ease,

    box-shadow 0.2s ease;

  box-shadow: 0 4px 18px rgba(255, 75, 38, 0.32);

}



.btn-brand-orange:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 28px rgba(255, 75, 38, 0.48);

  color: #fff;

}



.btn-brand-orange::after {

  content: "";

  position: absolute;

  top: -50%;

  left: -60%;

  width: 40%;

  height: 200%;

  background: rgba(255, 255, 255, 0.22);

  transform: skewX(-20deg);

  transition: left 0.55s ease;

}



.btn-brand-orange:hover::after {

  left: 130%;

}



/*  FOOTER  */

footer {

  background: linear-gradient(180deg, #0d1826 0%, #14213d 100%);

  color: rgba(255, 255, 255, 0.55);

  padding: 80px 0 30px;

  position: relative;

}

footer::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: linear-gradient(90deg, var(--primary), var(--brand-orange), #ffb347, var(--brand-orange), var(--primary));

  background-size: 300% 100%;

  animation: gradient-shift 5s linear infinite;

}

@keyframes gradient-shift {

  0% {

    background-position: 0% 0%;

  }

  100% {

    background-position: 300% 0%;

  }

}

.footer-link {

  color: rgba(255, 255, 255, 0.6);

  text-decoration: none;

  font-size: 14px;

  transition:

    color 0.2s,

    opacity 0.2s;

}

.footer-link:hover {

  color: var(--brand-orange) !important;

  opacity: 1 !important;

}

.footer-divider {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 60px;

  padding-top: 30px;

}



/*  FLOATING WHATSAPP FAB  */

.whatsapp-fab {

  position: fixed;

  bottom: 28px;

 right: 58px;

  width: 50px;

  height: 50px;

  background: linear-gradient(135deg, #25d366, #128c7e);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);

  cursor: pointer;

  text-decoration: none;

  transition:

    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),

    box-shadow 0.3s ease;

  animation: fab-bounce 0.7s 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;

}

.whatsapp-fab:hover {

  transform: scale(1.16);

  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);

}

.whatsapp-fab i {

  font-size: 20px;

  color: white;

}

.whatsapp-fab svg {

  width: 28px;

  height: 28px;

  fill: white;

}

.whatsapp-ring {

  position: absolute;

  inset: -6px;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, 0.45);

  animation: ring-pulse 2.8s ease-out infinite;

}

@keyframes ring-pulse {

  0% {

    transform: scale(1);

    opacity: 0.9;

  }

  100% {

    transform: scale(1.6);

    opacity: 0;

  }

}

@keyframes fab-bounce {

  from {

    transform: scale(0) rotate(-180deg);

    opacity: 0;

  }

  to {

    transform: scale(1) rotate(0deg);

    opacity: 1;

  }

}







/* 18-08-2026 */



/*  FLOATING WHATSAPP FAB  */

.call-fab {

  position: fixed;

  bottom: 115px;

  right: 58px;

  width: 50px;

  height: 50px;

  background: var(--bg-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  box-shadow: 0 6px 24px #ff000f61;

  cursor: pointer;

  text-decoration: none;

  transition:

    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),

    box-shadow 0.3s ease;

  animation: fab-bounce 0.7s 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;

}

.call-fab:hover {

  transform: scale(1.16);

  box-shadow: 0 12px 35px rgba(211, 37, 37, 0.73);

}

.call-fab i {

  font-size: 20px;

  color: white;

}



.call-ring {

  position: absolute;

  inset: -6px;

  border-radius: 50%;

  border: 2px solid rgb(211 37 37 / 45%);

  animation: ring-pulse 2.8s ease-out infinite;

}



/* end */







/*  HERO  */

.hero-section {

  min-height: 103vh;

  background-size: cover;

  background-position: center;

  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;

}



/* Animated floating glow orbs */

.hero-orb {

  position: absolute;

  border-radius: 50%;

  filter: blur(70px);

  pointer-events: none;

  z-index: 1;

}



.hero-orb-1 {

  width: 520px;

  height: 520px;

  background: radial-gradient(circle, rgba(255, 75, 38, 0.35), transparent 70%);

  top: -180px;

  right: 8%;

  animation: float-orb 9s ease-in-out infinite;

}



.hero-orb-2 {

  width: 380px;

  height: 380px;

  background: radial-gradient(circle, rgba(179, 33, 0, 0.25), transparent 70%);

  bottom: -60px;

  left: 28%;

  animation: float-orb 9s ease-in-out infinite;

  animation-delay: -4.5s;

}



@keyframes float-orb {

  0%,

  100% {

    transform: translateY(0) scale(1);

  }



  50% {

    transform: translateY(-28px) scale(1.07);

  }

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(105deg, var(--surface) 0%, rgba(255, 248, 243, 0.78) 42%, rgba(255, 248, 243, 0.05) 100%);

  z-index: 2;

}



.hero-content {

  position: relative;

  z-index: 3;

}



/* Hero text entrances */

.hero-badge {

  animation: fadeUp 0.65s 0.1s ease both;

}



.hero-heading {

  animation: fadeUp 0.65s 0.25s ease both;

}



.hero-subtext {

  font-size: 17px;

  font-weight: 500;

  width: 82%;

  letter-spacing: 0.3px;

  animation: fadeUp 0.65s 0.4s ease both;

}



.hero-cta {

  animation: fadeUp 0.65s 0.55s ease both;

  font-size: 14px;

}



.hero-card {

  animation: fadeUp 0.65s 0.5s ease both;

}



@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(30px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/*  BOOKING CARD  */

.booking-card {

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(22px);

  -webkit-backdrop-filter: blur(22px);

  border-radius: 1.75rem;

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow:

    0 32px 64px -12px rgba(0, 0, 0, 0.18),

    0 0 0 1px rgba(229, 190, 181, 0.18);

}



.booking-card .form-control,

.booking-card .input-group-text {

  background: #fff !important;

  border: 1px solid rgba(229, 190, 181, 0.3) !important;

  transition:

    border-color 0.2s,

    box-shadow 0.2s;

  border-radius: 11px;

  height: 45px;

  font-size: 14px;

}



.booking-card .form-control:focus {

  background: rgba(255, 255, 255, 0.95) !important;

  border-color: var(--brand-orange) !important;

  box-shadow: 0 0 0 3px rgba(255, 75, 38, 0.12) !important;

}



/* Index */



.form-labels {

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 0.3px;

  text-transform: none;

  padding-bottom: 6px;

}



.home-about {

  width: 75%;

}

/*  STATS BAR  */

.stats-bar {

  background: linear-gradient(135deg, #0f1a2e 0%, #1e3a6e 100%);

  border-radius: 9999px;

  margin-top: -50px;

  position: relative;

  z-index: 10;

  box-shadow: 0 20px 45px -10px rgba(15, 26, 46, 0.4);

}



.stats-bar h2 {

  font-weight: 800;

  font-size: 2rem;

  background: linear-gradient(135deg, #ff000f, #ffb347);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.stats-bar p {

  color: rgb(255 255 255 / 76%) !important;

  font-weight: 400 !important;

  letter-spacing: 0.3px;

  font-size: 15px;

  opacity: 1;

}



/*  BADGE  */

.badge-custom {

  background: linear-gradient(135deg, rgba(179, 33, 0, 0.08), rgba(255, 75, 38, 0.06));

  color: var(--primary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  padding: 0.4rem 1.1rem;

  border-radius: 9999px;

  font-size: 0.72rem;

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  border: 1px solid rgba(179, 33, 0, 0.14);

}



/*  TAB PILLS  */

.tab-pill {

  border-radius: 9999px;

  padding: 0.75rem 2rem;

  font-weight: 700;

  border: none;

  background: transparent;

  color: var(--on-surface-variant);

  transition: all 0.25s ease;

}



.tab-pill:hover {

  color: var(--primary);

}



.tab-pill.active {

  background: var(--bg-color);

  color: white !important;

  box-shadow: 0 4px 16px rgba(255, 75, 38, 0.32);

}



.tab-pane {

  min-height: 360px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.story-title {

  margin-bottom: 20px;

  line-height: 1.2;

  font-weight: 600;

  font-size: 30px;

  color: #1e293b;

}



.story-title span {

  color: var(--brand-orange);

  font-family: "Caveat", cursive;

  font-size: 30px;

  font-weight: 800;

  letter-spacing: 0.3px;

  padding-right: 5px;

}



.story-copy {

  color: #475467;

  line-height: 27px;

  font-size: 16px;

  margin-bottom: 25px;

}

.story-panel {

  margin: 0 auto;

  width: 70%;

}

.story-list {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 26px;

  margin: 0;

  padding: 0;

}



.story-item {

  display: flex;

  align-items: flex-start;

  gap: 0.8rem;

  color: #1f2937;

  font-weight: 500;

  font-size: 15px;

  line-height: 21px;

}



.story-icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 2rem;

  height: 2rem;

  border-radius: 10px;

  background: var(--brand-orange);

  color: #fff;

  font-size: 0.85rem;

  flex-shrink: 0;

  margin-top: 0.1rem;

}



.story-image-wrap {

  position: relative;

  border-radius: 28px;

  overflow: hidden;

  border: 5px solid rgba(255, 255, 255, 0.9);

  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);

}



.story-image-wrap::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(255, 75, 38, 0.15), rgba(8, 14, 31, 0.12));

  z-index: 1;

  pointer-events: none;

}



.story-image-wrap img {

  min-height: 400px;

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/*  SKEW  */

.skew-crop {

  transform: skewX(-6deg);

  overflow: hidden;

  border-radius: 1rem;

}



.skew-crop img {

  transform: skewX(6deg) scale(1.1);

}



/* Our Services */



.hsv-section {

  background: #f4f1ee;

  padding: 90px 0;

}



.hsv-eyebrow {

  display: inline-block;

  background: #fdece7;

  color: var(--brand-orange);

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: 0.5px;

  padding: 6px 16px;

  border-radius: 30px;

  margin-bottom: 16px;

}

.hsv-h2 {

  font-weight: 700;

  font-size: 34px;

  color: #14060a;

  margin-bottom: 10px;

}

.hsv-muted {

  color: #6b6b6b;

  font-size: 15px;

}



/* Route line connecting the 4 stops */

.hsv-route {

  position: relative;

  margin-top: 60px;

}

.hsv-route-line {

  position: absolute;

  top: 57px;

  left: 12.5%;

  right: 12.5%;

  height: 2px;

  background-image: linear-gradient(to right, #d8c6bd 60%, transparent 40%);

  background-size: 10px 2px;

  background-repeat: repeat-x;

  z-index: 0;

}



.hsv-card {

  position: relative;

  z-index: 1;

  text-align: center;

  padding: 0 14px;

}



.hsv-icon {

  width: 68px;

  height: 68px;

  border-radius: 50%;

  background: var(--bg-color);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 26px;

  margin: 0 auto 22px;

  box-shadow: 0 10px 24px rgba(204, 18, 29, 0.28);

  transition: transform 0.25s ease;

}

.hsv-card:hover .hsv-icon {

  transform: translateY(-4px) scale(1.05);

}



.hsv-step {

  font-size: 11.5px;

  font-weight: 700;

  color: var(--brand-orange);

  letter-spacing: 1px;

  margin-bottom: 8px;

}



.hsv-card h4 {

  font-weight: 700;

  font-size: 17.5px;

  color: #14060a;

  margin-bottom: 10px;

}

.hsv-card p {

  font-size: 13.5px;

  color: #6b6b6b;

  line-height: 1.7;

  margin-bottom: 14px;

}



.hsv-link {

  font-size: 12.5px;

  font-weight: 700;

  color: var(--brand-orange);

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 5px;

}

.hsv-link i {

  transition: transform 0.2s ease;

}

.hsv-link:hover i {

  transform: translateX(3px);

}

.hsv-link:hover {

  color: var(--brand-orange);

}



/*  FLEET CARDS  */

.fleet-card {

  border: 1.5px solid rgba(229, 190, 181, 0.2);

  border-radius: 1.75rem;

  overflow: hidden;

  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  background: white;

  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);

  position: relative;

}



.fleet-card-img {

  overflow: hidden;

  height: 200px;

  position: relative;

}



.fleet-card-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;

}



.fleet-card:hover {

  border-color: var(--brand-orange);

  box-shadow: 0 22px 45px -8px rgba(255, 75, 38, 0.22);

  transform: translateY(-8px);

}



.fleet-card:hover .fleet-card-img img {

  transform: scale(1.1);

}



.fleet-ribbon {

  position: absolute;

  top: 14px;

  left: 0;

  background: linear-gradient(135deg, var(--brand-orange), #d4410f);

  color: white;

  font-size: 0.65rem;

  font-weight: 800;

  padding: 4px 14px 4px 14px;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  border-radius: 0 9999px 9999px 0;

  z-index: 2;

  box-shadow: 0 3px 10px rgba(255, 75, 38, 0.3);

}



/*  WHY CHOOSE US  */

.why-icon {

  width: 58px;

  height: 58px;

  border-radius: 1rem;

  background: linear-gradient(135deg, rgba(255, 75, 38, 0.1), rgba(179, 33, 0, 0.06));

  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 0.75rem;

  transition: all 0.3s ease;

  border: 1px solid rgba(255, 75, 38, 0.12);

}



.why-item {

  transition: transform 0.3s ease;

  cursor: default;

}



.why-item:hover {

  transform: translateY(-5px);

}



.why-item:hover .why-icon {

  background: linear-gradient(135deg, var(--brand-orange), #d4410f);

  box-shadow: 0 8px 22px rgba(255, 75, 38, 0.35);

  border-color: transparent;

}



.why-item:hover .why-icon .material-symbols-outlined {

  color: white !important;

  font-size: 17px;

}



/*  TESTIMONIALS  */

.testimonial-card {

  border: 1.5px solid rgba(229, 190, 181, 0.2);

  border-radius: 1.75rem;

  padding: 2rem;

  background: white;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;

  height: 100%;

  position: relative;

  overflow: hidden;

}



.testimonial-card::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  border: 1.5px solid transparent;

  background: linear-gradient(135deg, var(--brand-orange), var(--primary)) border-box;

  -webkit-mask:

    linear-gradient(#fff 0 0) padding-box,

    linear-gradient(#fff 0 0);

  -webkit-mask-composite: destination-out;

  mask-composite: exclude;

  opacity: 0;

  transition: opacity 0.35s ease;

}



.testimonial-card:hover {

  transform: translateY(-7px);

  box-shadow: 0 22px 44px -10px rgba(255, 75, 38, 0.15);

}



.testimonial-card:hover::after {

  opacity: 1;

}



.star-filled {

  font-variation-settings: "FILL" 1;

  color: #f59e0b;

  font-size: 1rem;

}



/*  ACCORDION  */

.accordion-button:not(.collapsed) {

  background-color: transparent;

  color: var(--brand-orange);

  box-shadow: none;

}



.accordion-button:focus {

  box-shadow: none;

  border-color: transparent;

}



/*  CTA BANNER  */

.cta-banner {

  background: linear-gradient(135deg, #c03800 0%, var(--brand-orange) 55%, #ff7a50 100%);

  border-radius: 2.5rem;

  overflow: hidden;

  position: relative;

  box-shadow: 0 32px 64px -12px rgba(200, 55, 0, 0.38);

}



.left-banner .tire-track {

  position: absolute;

  top: -10px;

  left: -35px;

  z-index: -22;

}



/*  SCROLL REVEAL  */

.reveal {

  opacity: 0;

  transform: translateY(36px);

  transition:

    opacity 0.7s ease,

    transform 0.7s ease;

}



.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}



.reveal-d1 {

  transition-delay: 0.1s;

}



.reveal-d2 {

  transition-delay: 0.2s;

}



.reveal-d3 {

  transition-delay: 0.3s;

}



.reveal-d4 {

  transition-delay: 0.4s;

}



/*  MISC  */

.banner-heading {

  font-size: clamp(36px, 5vw, 60px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1.5px;

}



.banner-heading span {

  color: var(--brand-orange);

}



.animate-pulse-slow {

  animation: pulse 2s infinite;

}



.w-md-75 {

  width: 75% !important;

}



@keyframes pulse {

  0% {

    transform: scale(0.95);

    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);

  }



  70% {

    transform: scale(1);

    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);

  }



  100% {

    transform: scale(0.95);

    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

  }

}



/* Abouts us page */



/*  BANNER  */

.inner-banner {

  height: 300px;

  position: relative;

  background-image: url("assets/img/question.webp");

  background-size: cover;

  background-position: center;

  border-bottom-left-radius: 2rem;

  border-bottom-right-radius: 2rem;

  overflow: hidden;

}

.banner-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(105deg, rgba(20, 33, 61, 0.8) 0%, rgba(20, 33, 61, 0.4) 100%);

}



/*  STATS SECTION  */

.stats-section {

  background: linear-gradient(135deg, #0f1a2e 0%, #1e3a6e 100%);

  padding: 80px 0;

  color: white;

  position: relative;

  overflow: hidden;

}

.stats-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at center, rgba(255, 75, 38, 0.15) 0%, transparent 70%);

}

.stat-value {

  font-size: 36px;

  font-weight: 800;



  display: block;

  background: linear-gradient(135deg, #ff4b26, #ffb347);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.stat-label {

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.7);

}



/*  QUOTE  */

.quote-italic {

  font-style: italic;

  font-size: 24px;

  line-height: 1.6;

  color: var(--on-surface-variant);

}



/*  CTA BOX  */

.cta-box {

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  border-radius: 2.5rem;

  padding: 4rem 2rem;

  border: 1px solid rgba(255, 255, 255, 0.6);

  box-shadow:

    0 32px 64px -12px rgba(0, 0, 0, 0.1),

    0 0 0 1px rgba(229, 190, 181, 0.15);

}



.py-xl {

  padding-top: 80px;

  padding-bottom: 80px;

}



/* About page (( why choose us )) */



.about-text p {

  font-size: 16px;

  font-weight: 400;

  letter-spacing: 0.3px;

  padding-bottom: 10px;

  opacity: 0.9;

}



/*  */



.why-section {

  background: #f4f1ee;

  padding: 90px 0;

}



.why-eyebrow {

  display: inline-block;

  background: #fdece7;

  color: var(--brand-orange);

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: 0.5px;

  padding: 6px 16px;

  border-radius: 30px;

  margin-bottom: 16px;

}



.why-h2 {

  font-weight: 700;

  font-size: 34px;

  color: #14060a;

  margin-bottom: 10px;

}



.why-sub {

  color: #6b6b6b;

  font-size: 15px;

  margin-bottom: 50px;

}



/* ===== Bento grid ===== */

.why-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 170px;

  gap: 20px;

}



.why-card {

  border-radius: 16px;

  padding: 26px;

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



/* Hero stat card - spans 2x2 */



.why-card.why-plain {

  background: #fff;

  border: 1px solid #e9ddd5;

  box-shadow: 0 8px 22px rgba(20, 6, 6, 0.04);

}



.why-card-icon {

  width: 44px;

  height: 44px;

  border-radius: 11px;

  background: #fdece7;

  color: var(--brand-orange);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 19px;

  margin-bottom: 14px;

}



.why-card h5 {

  font-weight: 700;

  font-size: 15.5px;

  color: #14060a;

  margin-bottom: 6px;

}



.why-card p {

  font-size: 12.5px;

  color: #6b6b6b;

  line-height: 1.55;

  margin: 0;

}



/*  */



/* ===== Founding story block ===== */

.abu-story {

  display: grid;

  align-items: center;

  grid-template-columns: 126px 1fr;

  gap: 19px;

  background: #fff8f3;

  border: 1px solid #f0e5df;

  border-radius: 18px;

  padding: 20px;

  margin-bottom: 24px;

}



.abu-year-badge {

  flex: 0 0 130px;

  height: 99px;

  border-radius: 16px;

  background: var(--bg-color);

  border: 1.5px solid #f0c9b8;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}



.abu-year-badge .abu-year-num {

  font-family: "Caveat", cursive;

  font-weight: 800;

  font-size: 43px;

  line-height: 1;

  color: #fff;

}



.abu-year-badge .abu-year-lbl {

  font-size: 11px;

  letter-spacing: 0.5px;

  color: #fff;

  opacity: 0.9;

}



.abu-story-text h3 {

  font-weight: 700;

  font-size: 19px;

  color: #14060a;

  margin-bottom: 10px;

}



.abu-story-text p {

  font-size: 14.5px;

  color: #6b6b6b;

  line-height: 1.8;

  margin: 0;

}



/* ===== LIC highlight ===== */

.abu-lic {

  display: flex;

  align-items: center;

  gap: 20px;

  background: #fff8f3;

  border: 1px solid #f0e5df;

  border-radius: 18px;

  padding: 15px;

}



.abu-lic-icon {

  flex: 0 0 52px;

  width: 52px;

  height: 52px;

  border-radius: 13px;

  background: #fdece7;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  color: var(--brand-orange);

}



.abu-lic h5 {

  font-weight: 700;

  font-size: 16px;

  color: #14060a;

  margin-bottom: 4px;

}



.abu-lic p {

  font-size: 13.5px;

  color: #6b6b6b;

  margin: 0;

}



/* Our Service */



/* ===== Intro ===== */

.srv-section {

  padding: 80px 0;

}



.srv-eyebrow {

  display: inline-block;

  background: #fdece7;

  color: var(--brand-orange);

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: 0.5px;

  padding: 6px 16px;

  border-radius: 30px;

  margin-bottom: 16px;

}



.srv-h2 {

  font-weight: 700;

  font-size: 32px;

  color: #14060a;

  margin-bottom: 16px;

}



.srv-muted {

  color: #6b6b6b;

  font-size: 15.5px;

  line-height: 1.75;

}



/* ===== Service route timeline ===== */

.srv-timeline {

  position: relative;

}



.srv-route-line {

  position: absolute;

  left: 50%;

  top: 10px;

  bottom: 10px;

  width: 2px;

  background-image: linear-gradient(to bottom, #ecb9ab 60%, transparent 40%);

  background-size: 2px 10px;

  background-repeat: repeat-y;

  transform: translateX(-50%);

}



.srv-stop {

  position: relative;

  margin-bottom: 70px;

}



.srv-stop:last-child {

  margin-bottom: 0;

}



.srv-stop-marker {

  position: absolute;

  left: 50%;

  top: 6px;

  transform: translateX(-50%);

  width: 54px;

  height: 54px;

  border-radius: 50%;

  background: linear-gradient(135deg, #cc121d, #ff6a00);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 22px;

  box-shadow: 0 10px 22px rgba(204, 18, 29, 0.3);

  z-index: 2;

}



.srv-stop-card {

  background: #fff;

  border: 1px solid #f2e5e0;

  border-radius: 14px;

  padding: 30px 32px;

  box-shadow: 0 10px 26px rgba(20, 6, 6, 0.05);

}



.srv-stop-card h4 {

  font-weight: 700;

  font-size: 21px;

  color: #14060a;

  margin-bottom: 10px;

}



.srv-stop-card p {

  color: #6b6b6b;

  font-size: 14.5px;

  line-height: 1.7;

  margin-bottom: 14px;

}



.srv-stop-tag {

  font-size: 12.5px;

  color: var(--brand-orange);

  font-weight: 600;

}



.srv-stop-tag i {

  margin-right: 5px;

}



/*  */



/* Destinations */



/* ===== Filter tabs ===== */

.dst-filters {

  padding: 44px 0 10px;

}



.dst-tab {

  background: #fff;

  border: 1px solid #eadfd8;

  color: #5a2a1f;

  font-size: 13.5px;

  font-weight: 600;

  padding: 9px 22px;

  border-radius: 22px;

  cursor: pointer;

  margin-right: 10px;

  margin-bottom: 10px;

  transition: all 0.2s ease;

}



.dst-tab.active {

  background: var(--brand-orange);

  color: #fff;

  border-color: transparent;

}



/* ===== Alternating rows ===== */

.dst-main {

  padding: 30px 0 50px;

}



.dst-row {

  display: flex;

  align-items: center;

  gap: 48px;

  padding: 36px 0;

  border-bottom: 1px solid #f0e5df;

}



.dst-row:first-child {

  padding-top: 0;

}



.dst-row:last-child {

  border-bottom: none;

}



.dst-row.dst-reverse {

  flex-direction: row-reverse;

}



.dst-row-img {

  flex: 0 0 42%;

  height: 280px;

  border-radius: 16px;

  background-size: cover;

  background-position: center;

  position: relative;

  box-shadow: 0 16px 34px rgba(20, 6, 6, 0.1);

}



.dst-badge-cat {

  position: absolute;

  top: 14px;

  left: 14px;

  background: rgba(20, 6, 6, 0.62);

  color: #fff;

  font-size: 11px;

  font-weight: 600;

  padding: 5px 13px;

  border-radius: 14px;

  backdrop-filter: blur(3px);

}



.dst-row-content {

  flex: 1;

}



.dst-row-content h4 {

  font-weight: 700;

  font-size: 24px;

  color: #14060a;

  margin-bottom: 10px;

}



.dst-stat {

  font-size: 13px;

  color: var(--brand-orange);

  font-weight: 600;

  margin-bottom: 16px;

}



.dst-stat i {

  margin-right: 6px;

}



.dst-row-content p {

  font-size: 14.5px;

  color: #6b6b6b;

  line-height: 1.8;

  margin-bottom: 0;

  max-width: 480px;

}



/*  */



/* contact us */



/* ===== Section ===== */

.enq-section {

  background: #fff8f3;

  padding: 70px 0;

}



/* ===== Address card ===== */

.enq-address-card {

  background: #ffffff;

  border: 1px solid #f0e5df;

  border-radius: 16px;

  padding: 36px 30px;

  color: #2b2b2b;

  height: 100%;

  box-shadow: 0 12px 30px rgba(20, 6, 6, 0.05);

}



.enq-address-card h3 {

  font-weight: 700;

  font-size: 20px;

  color: #14060a;

  margin-bottom: 6px;

}



.enq-address-card .enq-sub {

  color: #8a7570;

  font-size: 13px;

  margin-bottom: 28px;

}



.enq-info-row {

  display: flex;

  gap: 14px;

  margin-bottom: 22px;

}



.enq-info-icon {

  flex: 0 0 40px;

  width: 40px;

  height: 40px;

  border-radius: 10px;

  background: #fdece7;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--brand-orange);

  font-size: 16px;

}



.enq-info-row div p {

  margin: 0;

}



.enq-info-label {

  font-size: 11.5px;

  color: #a8988f;

  text-transform: uppercase;

  letter-spacing: 0.4px;

  margin-bottom: 3px !important;

}



.enq-info-value {

  font-size: 14px;

  color: #14060a;

  line-height: 1.6;

}



.enq-social {

  display: flex;

  gap: 10px;

  margin-top: 30px;

}



.enq-social a {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: #fdece7;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--brand-orange);

  text-decoration: none;

}



/* ===== Form card ===== */

.enq-form-card {

  background: #fff;

  border-radius: 16px;

  border: 1px solid #f0e5df;

  padding: 36px 34px;

  box-shadow: 0 12px 30px rgba(20, 6, 6, 0.05);

  height: 100%;

}



.enq-form-card h3 {

  font-weight: 700;

  font-size: 20px;

  color: #14060a;

  margin-bottom: 6px;

}



.enq-form-note {

  font-size: 13.5px;

  color: #8a7570;

  margin-bottom: 26px;

}



.enq-form-note span {

  color: var(--brand-orange);

}



.enq-label {

  font-size: 13px;

  font-weight: 600;

  color: #14060a;

  margin-bottom: 6px;

  display: block;

}



.enq-label span {

  color: var(--brand-orange);

}



.enq-field {

  width: 100%;

  border: 1px solid #eadfd8;

  border-radius: 9px;

  padding: 11px 14px;

  font-size: 14px;

  color: #2b2b2b;

  /*margin-bottom: 20px;*/

  background: #fffaf7;

}



.enq-field:focus {

  outline: none;

  border-color: var(--brand-orange);

  background: #fff;

}



textarea.enq-field {

  resize: vertical;

  min-height: 100px;

}



.enq-btn-submit {

  background: var(--brand-orange);

  border: none;

  color: #fff;

  font-weight: 600;

  font-size: 14.5px;

  padding: 12px 30px;

  border-radius: 8px;

  box-shadow: 0 8px 18px rgba(204, 18, 29, 0.25);

}



.enq-btn-reset {

  background: transparent;

  border: 1.5px solid #eadfd8;

  color: #6b6b6b;

  font-weight: 600;

  font-size: 14.5px;

  padding: 12px 26px;

  border-radius: 8px;

  margin-left: 10px;

}



/* ===== Map ===== */

.enq-map-wrap {

  border-radius: 16px;

  overflow: hidden;

  margin-top: 34px;

  box-shadow: 0 12px 30px rgba(20, 6, 6, 0.06);

}



.enq-map-wrap iframe {

  width: 100%;

  height: 340px;

  border: 0;

  display: block;

}



/* Blog */



/* ===== Featured post ===== */

.blg-featured {

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  border: 1px solid #f0e5df;

  box-shadow: 0 14px 34px rgba(20, 6, 6, 0.06);

  display: flex;

  margin-bottom: 40px;

}



.blg-featured-img {

  flex: 0 0 48%;

  background-size: cover;

  background-position: center;

  min-height: 320px;

  position: relative;

}



.blg-featured-body {

  flex: 1;

  padding: 38px 40px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.blg-tag {

  display: inline-block;

  background: #fdece7;

  color: var(--brand-orange);

  font-size: 11.5px;

  font-weight: 700;

  padding: 5px 14px;

  border-radius: 14px;

  margin-bottom: 16px;

  width: fit-content;

}



.blg-featured-body h2 {

  font-weight: 700;

  font-size: 26px;

  color: #14060a;

  margin-bottom: 14px;

  line-height: 1.3;

}



.blg-featured-body p {

  font-size: 14.5px;

  color: #6b6b6b;

  line-height: 1.75;

  margin-bottom: 22px;

}



/* ===== Grid cards ===== */

.blg-card {

  background: #fff;

  border-radius: 16px;

  overflow: hidden;

  border: 1px solid #f0e5df;

  box-shadow: 0 8px 22px rgba(20, 6, 6, 0.04);

  height: 100%;

  display: flex;

  flex-direction: column;

  transition:

    transform 0.25s ease,

    box-shadow 0.25s ease;

}



.blg-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 18px 36px rgba(20, 6, 6, 0.09);

}



.blg-card-img {

  height: 180px;

  background-size: cover;

  background-position: center;

}



.blg-card-body {

  padding: 22px 22px 24px;

  display: flex;

  flex-direction: column;

  flex: 1;

}



.blg-card-body h4 {

  font-weight: 700;

  font-size: 16.5px;

  color: #14060a;

  margin-bottom: 10px;

  line-height: 1.4;

}



.blg-card-body p {

  font-size: 13.5px;

  color: #6b6b6b;

  line-height: 1.7;

  margin-bottom: 18px;

  flex: 1;

}



.blg-readmore {

  color: var(--brand-orange);

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  width: fit-content;

}



.blg-readmore i {

  transition: transform 0.2s ease;

}



.blg-readmore:hover i {

  transform: translateX(3px);

}



.blg-readmore:hover {

  color: var(--brand-orange);

}



/*  */



/* ===== Hero ===== */

.bld-hero {

  position: relative;

  min-height: 380px;

  display: flex;

  align-items: flex-end;

  background: url("https://images.unsplash.com/photo-1544967082-d9d25d867d66?auto=format&fit=crop&w=1740&q=80")

    center/cover;

}



.bld-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(20, 6, 6, 0.15) 0%, rgba(20, 6, 6, 0.88) 100%);

}



.bld-hero-content {

  position: relative;

  z-index: 2;

  padding-bottom: 44px;

}



.bld-crumb {

  color: #f4d9d0;

  font-size: 13.5px;

  margin-bottom: 16px;

}



.bld-crumb a {

  color: #f4d9d0;

  text-decoration: none;

}



.bld-tag {

  display: inline-block;

  background: var(--brand-orange);

  color: #fff;

  font-size: 11.5px;

  font-weight: 700;

  padding: 5px 14px;

  border-radius: 14px;

  margin-bottom: 16px;

}



.bld-hero h1 {

  font-weight: 800;

  font-size: 36px;

  color: #fff;

  max-width: 760px;

  margin-bottom: 18px;

  line-height: 1.3;

}



.bld-meta {

  display: flex;

  gap: 22px;

  flex-wrap: wrap;

}



.bld-meta span {

  color: #f4d9d0;

  font-size: 13px;

  display: flex;

  align-items: center;

  gap: 6px;

}



/* ===== Body ===== */

.bld-section {

  background: #fff8f3;

  padding: 60px 0 90px;

}



.bld-article {

  background: #fff;

  border-radius: 16px;

  border: 1px solid #f0e5df;

  padding: 40px 44px;

  box-shadow: 0 12px 30px rgba(20, 6, 6, 0.05);

}



.bld-article p {

  font-size: 15.5px;

  color: #3a3a3a;

  line-height: 1.9;

  margin-bottom: 22px;

}



.bld-article h3 {

  font-weight: 700;

  font-size: 21px;

  color: #14060a;

  margin: 32px 0 16px;

}



.bld-inline-img {

  width: 100%;

  border-radius: 12px;

  margin: 28px 0;

  height: 30rem;

  object-fit: cover;

}



.bld-quote {

  border-left: 3px solid #cc121d;

  padding: 6px 0 6px 22px;

  margin: 30px 0;

  font-size: 18px;

  font-weight: 600;

  color: #14060a;

  line-height: 1.6;

}



.bld-share {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 34px;

  padding-top: 26px;

  border-top: 1px solid #f0e5df;

}



.bld-share span {

  font-size: 13px;

  font-weight: 600;

  color: #6b6b6b;

}



.bld-share a {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: #fdece7;

  color: var(--brand-orange);

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

}



/* ===== Sidebar ===== */

.bld-side-card {

  background: #fff;

  border-radius: 14px;

  border: 1px solid #f0e5df;

  padding: 24px;

  box-shadow: 0 8px 22px rgba(20, 6, 6, 0.04);

  margin-bottom: 24px;

}



.bld-side-card h5 {

  font-weight: 700;

  font-size: 15px;

  color: #14060a;

  margin-bottom: 18px;

}



.bld-related {

  display: flex;

  gap: 12px;

  margin-bottom: 16px;

  text-decoration: none;

}



.bld-related:last-child {

  margin-bottom: 0;

}



.bld-related-img {

  flex: 0 0 64px;

  height: 64px;

  border-radius: 8px;

  background-size: cover;

  background-position: center;

}



.bld-related p {

  font-size: 13px;

  font-weight: 600;

  color: #14060a;

  line-height: 1.4;

  margin: 0;

}



.bld-cta {

  background: linear-gradient(115deg, #cc121d, #ff6a00);

  border-radius: 14px;

  padding: 26px 24px;

  color: #fff;

}



.bld-cta h5 {

  font-weight: 700;

  font-size: 16px;

  margin-bottom: 8px;

}



.bld-cta p {

  font-size: 13px;

  color: #ffe6da;

  margin-bottom: 18px;

}



.bld-cta a {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  background: #fff;

  color: var(--brand-orange);

  font-weight: 700;

  font-size: 13.5px;

  padding: 10px 18px;

  border-radius: 8px;

  text-decoration: none;

}



/*  */



/* ===== Form card ===== */

.cab-form-card {

  background: #fff;

  border-radius: 16px;

  border: 1px solid #f0e5df;

  padding: 38px 40px;

  box-shadow: 0 12px 30px rgba(20, 6, 6, 0.05);

}



.cab-form-card h3 {

  font-weight: 700;

  font-size: 20px;

  color: #14060a;

  margin-bottom: 6px;

}



.cab-form-note {

  font-size: 13.5px;

  color: #8a7570;

  margin-bottom: 28px;

}



.cab-form-note span {

  color: var(--brand-orange);

}



.cab-label {

  font-size: 13px;

  font-weight: 600;

  color: #14060a;

  margin-bottom: 6px;

  display: block;

}



.cab-label span {

  color: var(--brand-orange);

}



.cab-field {

  width: 100%;

  border: 1px solid #eadfd8;

  border-radius: 9px;

  padding: 11px 14px;

  font-size: 14px;

  color: #2b2b2b;

  margin-bottom: 20px;

  background: #fffaf7;

}



.cab-field:focus {

  outline: none;

  border-color: var(--brand-orange);

  background: #fff;

}



.cab-field-icon {

  position: relative;

}



.cab-field-icon i {

  position: absolute;

  left: 14px;

  top: 34%;

  transform: translateY(-50%);

  color: var(--brand-orange);

  font-size: 14px;

}



.cab-field-icon .cab-field {

  padding-left: 38px;

}



.cab-btn-submit {

  background: var(--brand-orange);

  border: none;

  color: #fff;

  font-weight: 600;

  font-size: 14.5px;

  padding: 12px 30px;

  border-radius: 8px;

  box-shadow: 0 8px 18px rgba(204, 18, 29, 0.25);

}



.cab-btn-reset {

  background: transparent;

  border: 1.5px solid #eadfd8;

  color: #6b6b6b;

  font-weight: 600;

  font-size: 14.5px;

  padding: 12px 26px;

  border-radius: 8px;

  margin-left: 10px;

}



/* ===== Sidebar ===== */

.cab-trust-card {

  background: #fff;

  border-radius: 16px;

  border: 1px solid #f0e5df;

  padding: 30px 28px;

  box-shadow: 0 8px 22px rgba(20, 6, 6, 0.04);

  margin-bottom: 20px;

}



.cab-trust-card h5 {

  font-weight: 700;

  font-size: 16px;

  color: #14060a;

  margin-bottom: 20px;

}



.cab-trust-row {

  display: flex;

  gap: 14px;

  margin-bottom: 20px;

}



.cab-trust-row:last-child {

  margin-bottom: 0;

}



.cab-trust-icon {

  flex: 0 0 40px;

  width: 40px;

  height: 40px;

  border-radius: 10px;

  background: #fdece7;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--brand-orange);

  font-size: 16px;

}



.cab-trust-row h6 {

  font-size: 14px;

  font-weight: 700;

  color: #14060a;

  margin-bottom: 3px;

}



.cab-trust-row p {

  font-size: 12.5px;

  color: #6b6b6b;

  margin: 0;

  line-height: 1.6;

}



.cab-call-card {

  background: linear-gradient(115deg, #cc121d, #ff6a00);

  border-radius: 16px;

  padding: 26px 24px;

  color: #fff;

  text-align: center;

}



.cab-call-card p {

  font-size: 13px;

  color: #ffe6da;

  margin-bottom: 12px;

}



.cab-call-card a {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: #fff;

  color: var(--brand-orange);

  font-weight: 700;

  font-size: 15px;

  padding: 11px 22px;

  border-radius: 8px;

  text-decoration: none;

}



/*  */



.e404-wrap {

  min-height: 100vh;

  background: #fff8f3;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 60px 20px;

}



.e404-inner {

  text-align: center;

  max-width: 520px;

}



.e404-badge {

  width: 74px;

  height: 74px;

  border-radius: 50%;

  background: #fdece7;

  color: var(--brand-orange);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  margin: 0 auto 26px;

}



.e404-code {

  font-weight: 800;

  font-size: 84px;

  line-height: 1;

  background: var(--brand-orange);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  margin-bottom: 6px;

}



.e404-title {

  font-weight: 700;

  font-size: 23px;

  color: #14060a;

  margin-bottom: 12px;

}



.e404-text {

  font-size: 15px;

  color: #6b6b6b;

  line-height: 1.75;

  margin-bottom: 34px;

}



.e404-route {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  margin-bottom: 36px;

}



.e404-route-dot {

  width: 9px;

  height: 9px;

  border-radius: 50%;

  background: #f0997b;

}



.e404-route-dot.e404-active {

  background: #cc121d;

}



.e404-route-line {

  width: 60px;

  height: 2px;

  background-image: linear-gradient(to right, #f0997b 60%, transparent 40%);

  background-size: 8px 2px;

  background-repeat: repeat-x;

}



.e404-actions {

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;

}



.e404-btn-primary {

  background: var(--brand-orange);

  color: #fff;

  font-weight: 600;

  font-size: 14.5px;

  padding: 13px 28px;

  border-radius: 8px;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  box-shadow: 0 10px 22px rgba(204, 18, 29, 0.25);

}



.e404-btn-ghost {

  background: #fff;

  border: 1.5px solid #eadfd8;

  color: #5a2a1f;

  font-weight: 600;

  font-size: 14.5px;

  padding: 13px 26px;

  border-radius: 8px;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 8px;

}



.e404-help {

  margin-top: 40px;

  font-size: 13px;

  color: #8a7570;

}



.e404-help a {

  color: var(--brand-orange);

  font-weight: 600;

  text-decoration: none;

}



/*  */



.owl-height-adjust .owl-height {

  height: 22rem !important;

  padding-top: 2rem;

}







/* 19-08-2026 Section start */



.social-dot {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgba(255, 255, 255, 0.6);

  transition: all 0.2s;

}

.social-dot:hover {

  background: linear-gradient(135deg, #cc121d, #ff6a00);

  border-color: transparent;

  color: #fff;

}



.mini-map {

  height: 132px;

  width: 85%;

  border-radius: 14px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);

  position: relative;

}

.width-cntrl {
    margin: 0 auto;
    width: 95%;
}



.mini-map-tag {

  position: absolute;

  bottom: 8px;

  left: 8px;

  background: rgba(10, 15, 25, 0.85);

  backdrop-filter: blur(4px);

  padding: 4px 10px;

  border-radius: 20px;

  font-size: 11px;

  color: #fff;

  display: flex;

  align-items: center;

  gap: 5px;

}



.hoverunderline:hover {

  text-decoration: underline !important;

}



/*  */



.gallery-wrap {

  max-width: 900px;

  margin: 0 auto;

}



.photo-card {

  background: #fff;

  border-radius: 16px;

  padding: 10px 10px 16px 10px;

  box-shadow: 0 12px 28px rgba(20, 15, 10, 0.08);

  border: 1px solid rgba(0, 0, 0, 0.04);

  transition:

    transform 0.25s ease,

    box-shadow 0.25s ease;

}

.photo-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 18px 34px rgba(20, 15, 10, 0.12);

}

.photo-card img {

  width: 100%;

  height: 260px;

  object-fit: cover;

  border-radius: 10px;

  display: block;

}

.photo-caption {

  padding: 12px 6px 2px 6px;

}

.photo-caption .year {

  color: #cc121d;

  font-weight: 700;

  font-size: 12px;

  letter-spacing: 0.06em;

  text-transform: uppercase;

}

.photo-caption .desc {

  color: #444;

  font-size: 13px;

  margin-top: 2px;

}



/* connecting thread between the two photos - echoes brand timeline style */

.gallery-row {

  position: relative;

}

.gallery-connector {

  position: absolute;

  top: 130px;

  left: 50%;

  width: 60px;

  height: 2px;

  background: repeating-linear-gradient(90deg, #ffcc00 0 8px, transparent 8px 16px);

  transform: translateX(-50%);

  display: none;

}

@media (min-width: 768px) {

  .gallery-connector {

    display: block;

  }

}

.gallery-badge {

  position: absolute;

  top: 118px;

  left: 50%;

  transform: translate(-50%, 0);

  width: 26px;

  height: 26px;

  background: linear-gradient(135deg, #cc121d, #ff6a00);

  border-radius: 50%;

  display: none;

  align-items: center;

  justify-content: center;

  box-shadow: 0 4px 10px rgba(204, 18, 29, 0.3);

  z-index: 2;

}

@media (min-width: 768px) {

  .gallery-badge {

    display: flex;

  }

}

.gallery-badge i {

  color: #fff;

  font-size: 11px;

}



 



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  */



/*  MOBILE RESPONSIVENESS  */



@media (max-width: 575px) {

  .why-grid {

    grid-template-columns: 1fr !important;

    grid-auto-rows: auto;

  }



  .cta-box {

    padding: 2rem 1rem;

  }



  .why-hero {

    grid-column: span 1;

    padding: 34px 26px;

  }



  .why-h2 {

    font-size: 26px;

  }

}



@media (max-width: 768px) {

  .hero-section {

    min-height: 70vh;

    /* padding-top: 100px; */

  }



  .banner-heading {

    font-size: 2.5rem !important;

  }



  .hero-subtext {

    font-size: 1rem !important;

    width: 100% !important;

  }



  .hero-card {

    margin: 33px 0px;

  }



  .stats-bar .vr {

    height: 24px !important;

  }



  .stats-bar h2 {

    font-size: 1.5rem;

  }



  .stats-bar p {

    font-size: 0.65rem;

  }



  .whatsapp-fab {

    width: 50px;

    height: 50px;

    bottom: 16px;

    right: 16px;

  }



   /* 18-06-2026 */

  .call-fab {

    width: 50px;

    height: 50px;

    bottom: 90px;

    right: 16px;

  }



  .fleet-card-img {

    height: 180px;

  }



  .cta-banner {

    padding: 2.5rem 1rem !important;

  }

  .cta-banner button {

    width: 20rem;

    font-size: 12px;

    padding: 0.75rem 0rem;

  }



  .hero-orb {

    filter: blur(80px);

    opacity: 0.4;

  }



  .testimonial-card {

    padding: 1.5rem;

  }



  footer {

    padding: 60px 0 20px;

  }



  .tab-pill {

    padding: 6px 16px;

    font-size: 13px;

    font-weight: 500;

  }



  .class-image img {

    width: 100% !important;

  }



  .mobile-none {

    display: none;

  }



  .mobile-header-div {

    background: #fff;

    padding: 23px 15px;

    border-radius: 11px;

    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);

  }



  .image-mobile-ssiue {

    width: 95% !important;

    right: 8px !important;

    margin-bottom: 22px;

  }



  .w-md-75 {

    width: 100% !important;

  }



  /* our service */



  .hsv-route-line {

    display: none;

  }

  .hsv-card {

    margin-bottom: 36px;

  }

  .hsv-h2 {

    font-size: 26px;

  }



  /*  */



  .srv-route-line {

    left: 26px;

  }



  .srv-stop-marker {

    left: 26px;

    width: 44px;

    height: 44px;

    font-size: 18px;

  }



  .srv-stop-card {

    margin-left: 43px;

    padding: 22px 20px;

  }



  .srv-stop {

    margin-bottom: 32px;

  }



  /*  */



  .dst-banner h1 {

    font-size: 30px;

  }



  .dst-row,

  .dst-row.dst-reverse {

    flex-direction: column;

    gap: 20px;

  }



  .dst-row-img {

    flex-basis: auto;

    width: 100%;

    height: 220px;

  }



  .dst-row-content h4 {

    font-size: 20px;

  }



  /* / */



  .enq-banner h1 {

    font-size: 28px;

  }



  .enq-form-card,

  .enq-address-card {

    padding: 26px 22px;

  }



  /* / */



  .blg-featured {

    flex-direction: column;

  }



  .blg-featured-img {

    min-height: 220px;

  }



  .blg-featured-body {

    padding: 26px 24px;

  }



  .blg-banner h1 {

    font-size: 28px;

  }



  /*  */



  .bld-hero h1 {

    font-size: 26px;

  }



  .bld-article {

    padding: 0px 15px;

    padding-bottom: 15px;

  }



  /*  */

  .cab-banner h1 {

    font-size: 28px;

  }



  .cab-form-card {

    padding: 26px 24px;

  }

  /*  */



  .e404-code {

    font-size: 64px;

  }



  .e404-title {

    font-size: 19px;

  }



  .home-about {

    width: 100%;

  }



  /*  */



  .story-panel {

    margin: 0 auto;

    width: 100%;

  }



  /*  */



  .abu-story {

    display: flex;

    flex-flow: column;

  }

  .abu-year-badge {

    width: 100%;

  }

}



@media (max-width: 575.98px) {

}



@media (max-width: 991.98px) {

  .why-grid {

    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 190px;

  }



  .why-hero {

    grid-column: span 2;

    grid-row: span 1;

  }

}



@media (max-width: 991px) {

}

