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

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: "Poppins", sans-serif;
  --bodyFont: "Open Sans", sans-serif;
  --themeRed: #be0000;
  --themeBlack: #0a2230;
  --borderColor: #e0cea9;
  --white: #ffffff;
}

/* ===================== common css start ====================== */
*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: var(--white);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--bodyFont);
}

.ml-auto {
  margin-left: auto;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0 100px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p,
figure {
  margin: 0;
}

.BtnPrimary {
  background-color: var(--themePrimary);
  position: relative;
  margin: 0 7px;
  padding: 3px 15px 4px;
  border-color: var(--themePrimary) !important;
  transition: 0.5s;
  corner-shape: scoop;
}

.headerWrapper .BtnPrimary {
  margin-right: 0;
}

.BtnPrimary:hover {
  background-color: var(--primaryHover) !important;
  border-color: var(--primaryHover) !important;
  transition: 0.5s;
}

.BtnPrimary span {
  color: var(--white);
  font-family: var(--spectral);
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
  letter-spacing: -0.32px;
  text-align: center;
}

.BtnPrimary svg path {
  fill: var(--themePrimary);
  transition: 0.5s;
}

.BtnPrimary:hover svg path {
  fill: var(--primaryHover);
  transition: 0.5s;
}

.svgRight,
.svgLeft {
  position: absolute;
  height: 100%;
  top: 0;
}

.svgLeft {
  left: -5px;
}

.svgRight {
  right: -5px;
}

/* ===================== common css end ====================== */

/* ====================HEADER START=========================== */
.headerArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 24px 0;
  transition: all 0.4s ease-in-out;
}

.headerArea.headerScrolled {
  padding: 12px 0;
  background: rgba(10, 34, 48, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainNav > ul {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #ffffff26;
  border-radius: 44px;
  padding: 13px 15px;
  transition: 0.5s;
}

.headerScrolled .mainNav > ul {
  background: transparent;
  transition: 0.5s;
}

.mainNav > ul > li > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--white);
  padding: 7px 10px;
  border-radius: 44px;
  display: inline-block;
  transition: 0.5s;
}

.mainNav > ul > li > a:hover,
.mainNav > ul > li > a.active {
  background: var(--white);
  color: var(--themeBlack);
  transition: 0.5s;
}

.headerScrolled .mainNav > ul > li > a:hover,
.headerScrolled .mainNav > ul > li > a.active {
  background: #2f434f;
  color: var(--white);
  transition: 0.5s;
}

.mobilenavBtn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.mobilenavBtn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mobilenavBtn .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 60 207;
  transition:
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobilenavBtn .line2 {
  stroke-dasharray: 60 60;
}

.mobilenavBtn.active .line1,
.mobilenavBtn.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -136px;
}

.mobilenavBtn.active .line2 {
  stroke-dashoffset: -60px;
}

.cta-btn {
  font-weight: 600;
  font-size: 18px;
  background: var(--white);
  color: var(--themeBlack);
  padding: 13px 25px;
  border-radius: 44px;
  transition: 0.5s;
}

.cta-btn:hover {
  background: var(--themeRed);
  color: var(--white) !important;
  transition: 0.5s;
}

.cta-btn i {
  display: none;
}

/* ====================HEADER CLOSE=========================== */

/* ===================== hero section start ====================== */
.hero-section {
  position: relative;
}

.heroContentWrapper {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  z-index: 9;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-family: var(--headingFont);
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  color: var(--white);
  text-align: center;
  margin: 15px 0 30px;
}

.hero-title strong,
.hero-title strong .word {
  font-weight: 500;
}

.hero-tag {
  background: #00000024;
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  padding: 8px 23px;
  border-radius: 44px;
  display: inline-block;
}

.hero-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  max-width: 782px;
  margin: auto;
}

.heroForm {
  max-width: 570px;
  margin: 45px auto 0;
  position: relative;
}

.heroForm .input-wrapper {
  position: relative;
  width: 100%;
}

.heroForm .form-control {
  width: 100%;
  height: 55px;
  box-shadow: none !important;
  background: var(--white);
  border: 3px solid var(--white);
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 170px;
}

.heroForm .form-control:focus {
  border-color: #0a223026;
}

.heroForm .placeholder-slider {
  position: absolute;
  top: 0;
  left: 20px;
  right: 170px;
  height: 55px;
  pointer-events: none;
  overflow: hidden;
  color: #515151;
  font-size: 16px;
  z-index: 2;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.heroForm .placeholder-slider.hidden {
  opacity: 0;
  visibility: hidden;
}

.heroForm .placeholder-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: left;
  will-change: transform, opacity;
}

.heroForm .btnPrimary {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 3;
}

.btnPrimary {
  background: var(--themeBlack);
  color: var(--white) !important;
  border-radius: 7px;
  padding: 15.5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: 0.5s;
}

.btnPrimary:hover {
  background: var(--themeRed);
  transition: 0.5s;
}

.heroMobile {
  position: absolute;
  bottom: -1px;
  right: 256px;
}

.hero-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: transform;
}

.bubblesItem {
  width: 100%;
  max-width: 187px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#00000066, #00000066) padding-box,
    linear-gradient(
        52.77deg,
        rgba(255, 255, 255, 0.1) 4%,
        rgba(255, 255, 255, 0.7) 100%
      )
      border-box;
  border-radius: 25px;
  position: absolute;
  padding: 9px 9px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform-origin: center center;
  will-change: transform, opacity;
}

.bubbles01 {
  left: -90px;
  bottom: 30px;
}

.bubbles02 {
  left: -140px;
  bottom: 260px;
}

.bubbles03 {
  right: -80px;
  bottom: 350px;
  max-width: 224px;
}

.bubbleTag {
  background: #ffecc9;
  border-radius: 44px;
  text-align: center;
  /* font-family: Roboto Slab; */
  font-weight: 400;
  font-size: 18px;
  color: var(--themeBlack);
  padding: 3px 5px;
  margin-bottom: 10px;
}

.bubblesItem p {
  color: #e6e6e6;
  text-align: center;
  font-size: 15px;
}

.bubblesItem p strong {
  color: var(--white);
  font-weight: 600;
}

.bubblesItem h6 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  margin-top: 10px;
}

.bubblesItem ul {
  padding-left: 30px;
  display: inline-grid;
  gap: 4px;
}

.bubblesItem li {
  list-style: disc;
  color: var(--white);
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.fadeup {
  will-change: transform, opacity;
}

.organic_marketing {
  background: url(../images/AD-BG.jpg) no-repeat center center / cover;
}

.marketing_cont_wrap {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 25px;
  line-height: 38px;
  text-align: center;
  color: #050419;
}

.mobile_img {
  text-align: center;
}

.mobile_wrapper {
  position: relative;
  display: block;
  max-width: 500px;
  margin: 0 auto;
  left: 20%;
}

.google_ads_badge {
  position: absolute;
  top: -15px;
  left: -45px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 4px 4px 4px 0px #f3727240;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.google_ads_badge span {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  color: #3c4043;
}

.marketing_campaign {
  position: relative;
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 10px -10px 24px 0px #fdbc8e66;
  z-index: 1;
  padding: 79px 28px 30px;
  right: 55px;
  max-width: 570px;
}

.marketing_campaign p {
  font-family: var(--poppins);
  font-size: 16px;
  line-height: 28px;
  color: #48475c;
  margin-bottom: 24px;
}

.marketing_campaign p:last-child {
  margin-bottom: 0;
}

.marketing_campaign p strong {
  color: #050419;
  font-weight: 700;
}

.marketing_campaign::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px 30px 0 0;
  /* Match parent radius precisely */
  padding: 1.5px;
  background: linear-gradient(
    243.46deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 58.41%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

/* =====================reel to route start========================= */
.reelToRoute {
  padding: 22vh 0;
  background: #fffaf0;
  min-height: 100vh;
  overflow: hidden;
}

.sectionTag {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  border: 1px solid var(--borderColor);
  border-radius: 44px;
  padding: 9px 19px;
  display: inline-block;
}

.sectionTitle {
  margin-bottom: 50px;
}

.sectionTitle h2 {
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  color: var(--themeBlack);
  margin-bottom: 20px;
}

.sectionTitle p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--themeBlack);
}

.sectionTitle h2 strong,
.sectionTitle h2 strong .word {
  font-weight: 600;
  color: var(--themeRed);
}

.reelToRoute .sectionTitle {
  max-width: 940px;
  margin: auto;
}

.stepWrapper {
  display: flex;
  gap: 40px;
  margin: 120px 0;
}

.stepItem {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 14px 18px;
  text-align: center;
  position: relative;
  will-change: transform, opacity;
}

.stepCounter {
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 45px;
  display: inline-grid;
  place-content: center;
  background: var(--white);
  border-radius: 70px 70px 0 0;
  font-weight: 600;
  font-size: 27px;
  line-height: 100%;
  color: var(--themeRed);
}

.stepItem h4 {
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--themeBlack);
  margin-bottom: 8px;
}

.stepItem p {
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--themeBlack);
}

.flightPathWrapper {
  position: relative;
  z-index: 1;
}

.flightline {
  position: absolute;
  width: 100%;
  z-index: -1;
  top: -23px;
  left: 0;
}

.stepWrapper {
  position: relative;
}

.overheadPlane {
  position: absolute;
  top: calc(50% - 18px);
  left: -20%;
  z-index: 5;
  transform: translateY(-50%);
  will-change: left, transform;
}

/* =====================reel to route close========================= */

/* =====================features start==============================  */
.fearture_reels {
  padding: 100px 0;
}

.tripsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  align-items: center;
}

.tripImg {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(180deg, #e0cea9 0%, #ffffff 50%, #e0cea9 100%) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 10px;
  position: relative;
  display: block;
}

.youtubeIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reelTiming {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  line-height: 13px;
}

.tripImg img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.tripBtn {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeBlack);
  border-radius: 44px;
  background: #fffaf0;
  border: 1px solid var(--borderColor);
  margin-top: 9px;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  width: 100%;
}

.tripBtn .btnText {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  opacity: 1;
  max-width: 200px;
  margin-right: 8px;
}

.tripBtn .sendIcon {
  color: #c9b78e;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  margin-left: 0;
}

.tripBtn .tripInput {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--themeBlack);
  width: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.tripBtn:hover:not(.active) {
  background: var(--themeBlack);
  color: var(--white);
}

.tripBtn:hover:not(.active) .sendIcon {
  color: var(--white);
}

/* Active input state on click: smooth slide to right */
.tripBtn.active {
  background: var(--white);
  border-color: var(--themeBlack);
  justify-content: space-between;
  padding: 5px 5px 5px 16px;
}

.tripBtn.active .btnText {
  opacity: 0;
  max-width: 0;
  margin-right: 0;
  overflow: hidden;
}

.tripBtn.active .tripInput {
  display: block;
  opacity: 1;
  width: calc(100% - 48px);
}

.tripBtn.active .sendIcon {
  width: 34px;
  height: 34px;
  background: var(--themeBlack);
  color: var(--white);
  margin-left: auto;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}

.tripBtn.active .sendIcon:hover {
  transform: scale(1.08);
  background: #000000;
}

/* =====================whychoose start======================= */

.our_platforms .sectionTitle {
  max-width: 700px;
  margin: 0 auto;
}

.paltfprmsItem {
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
}

.platformImg {
  width: 270px;
}

.platformImg img {
  width: 100%;
}

.platformContent {
  flex: 1;
  padding: 61px 30px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(90deg, #ffffff 0%, #d8d8d8 100%) border-box;
  border: 1px solid transparent;
  border-radius: 0 30px 30px 0;
}

.platformContent h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--themeBlack);
  margin-bottom: 20px;
}

.platformContent p {
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0%;
  color: var(--themeBlack);
}

.our_platformsOuter .row:nth-child(even) .paltfprmsItem {
  flex-flow: row-reverse;
}

.our_platformsOuter .row:nth-child(even) .platformContent {
  border-radius: 30px 0 0 30px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(270deg, #ffffff 0%, #d8d8d8 100%) border-box;
}

.our_platforms {
  padding: 0 0 100px;
}

/* =====================whychoose start======================= */
.why_choose_paid {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  min-height: 100vh;
  padding: 15vh 0 11vh;
}

.why_choose_paid .heading_wrapper h2.process_main_title {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #16151a;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why_choose_desc {
  font-family: var(--poppins);
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  max-width: 1025px;
  margin: 0 auto 40px;
}

.why_choose_paid .heading_wrapper {
  margin-bottom: 30px;
}

.why_choose_paid .process_main_title span {
  font-weight: 600;
  color: #050419;
}

/* Horizontal Scroll Section Wrapper */
.apart_sec_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.apart_sec {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.apart_cards_track {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 360px;
  padding-right: 0;
  position: relative;
  z-index: 2;
  will-change: transform;
  width: max-content;
  margin: 50px 0;
}

.apart_card_item {
  width: 343px;
  flex: 0 0 343px;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0px 0px 20px 0px #0000001a;
  transition: box-shadow 0.35s ease;
  cursor: pointer;
  background: #ffffff99;
  backdrop-filter: blur(15px);
}

.apart_card_item .card_img_box {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

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

.apart_card_item h4 {
  font-size: 20px;
  line-height: 24px;
  color: #050419;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.apart_card_item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0%;
  color: #000000;
  text-align: center;
  margin-top: 10px;
}

/* Card Tilts matching Figma */
.card_tilt_1 {
  transform: rotate(-3.5deg);
}

.card_tilt_2 {
  transform: rotate(2.5deg);
}

.card_tilt_3 {
  transform: rotate(-2.5deg);
}

.card_tilt_4 {
  transform: rotate(3deg);
}

.card_tilt_5 {
  transform: rotate(-2deg);
}

/* .apart_card_item:hover {
  transform: rotate(0deg) translateY(0px) scale(1.01) !important;
  z-index: 10;
}

.apart_card_item:hover .card_img_box img {
  transform: scale(1.06);
} */

/* ===============workspaceSec start============= */
.workspaceSec {
  padding: 100px 0;
  background: #fffaf0;
}

.tripLeft ul {
  display: inline-grid;
  gap: 6px;
  margin-bottom: 15px;
}

.tripLeft ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tripLeft ul li span {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #000000;
}

.tripLeft ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #be000080;
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.exploreItem .btnPrimary {
  margin-top: 10px;
}

.tripTabWrapper {
  background: var(--themeBlack);
  border-radius: 20px;
  height: 100%;
}

.tabHead {
  padding: 9px 9px 0;
  display: flex;
  justify-content: center;
}

.tabHead .nav-tabs {
  border: none !important;
  background: #2f434f;
  padding: 5px;
  border-radius: 44px;
  gap: 10px;
}

.tabHead .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  background: #ffffff33;
  border-radius: 44px;
  border: none !important;
}

.tabBody {
  border-top: 1px solid #2f434f;
  padding: 9px;
  margin-top: 9px;
}

.tabHead .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  background: #ffffff33;
  border-radius: 44px;
  border: none !important;
  line-height: 1;
  padding: 6.5px 15px;
  transition: 0.5s;
}

.tabHead .nav-tabs .nav-link.active {
  background: var(--white);
  color: var(--themeBlack);
  transition: 0.5s;
  box-shadow: 0px 0px 6px 0px #00a1ff;
}

/* Overview Tab Styles matching page design pattern */
.tripOverviewWrapper {
  padding: 32px 24px 30px;
  text-align: center;
  background: rgb(24, 40, 52);
  border-radius: 16px;
}

.overviewIconBox {
  width: 52px;
  height: 52px;
  background: #e6f4f1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.15);
}

.overviewHeading {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.overviewSubtext {
  font-size: 15px;
  line-height: 22px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 32px auto;
  font-weight: 400;
}

.overviewCardsGrid {
  margin-top: 10px;
}

.overviewCard {
  background: #1e303d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
}

.overviewCard:hover {
  background: #253b4b;
  transform: translateY(-3px);
  border-color: rgba(0, 161, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.overviewCardHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.overviewCardIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgb(148 143 13 / 15%);
  color: #c9b78e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.overviewCardHeader h4 {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.overviewCard p {
  font-size: 13px;
  line-height: 20px;
  color: #94a3b8;
  margin: 0;
}

/* Budget Tab Content Styles matching screenshot */
.rupeeIcon {
  font-size: 26px;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.tripBudgetWrapper .overviewSubtext strong {
  color: var(--white);
  font-weight: 700;
}

.budgetBarsContainer {
  max-width: 650px;
  margin: 28px auto 10px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.budgetBarItem {
  background: #1e303d;
  border-radius: 8px;
  height: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.budgetBarFill {
  background: #fffaf0;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.budgetBarLabel {
  font-size: 15px;
  font-weight: 500;
  color: var(--themeBlack);
}

.budgetBarAmount {
  font-size: 14px;
  font-weight: 500;
  color: var(--themeBlack);
  opacity: 0.9;
}

/* Bookings Tab Content Styles matching screenshot */
.checkIcon {
  font-size: 26px;
  color: #0d9488;
  font-weight: bold;
}

.bookingsListContainer {
  max-width: 650px;
  margin: 28px auto 10px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bookingItemCard {
  background: #1e303d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.bookingItemCard:hover {
  background: #253b4b;
  border-color: rgba(0, 161, 255, 0.25);
  transform: translateY(-2px);
}

.bookingTitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.bookingStatus {
  font-size: 13.5px;
  font-weight: 600;
  color: #0d9488;
}

/* Bookings Dashboard Styles */
.bookingDashboardStats {
  max-width: 750px;
  margin: 20px auto 24px auto;
}

.statMiniCard {
  background: #1e303d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.statIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(148 143 13 / 15%);
  color: #c9b78e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.statInfo {
  display: flex;
  flex-direction: column;
}

.statNumber {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.statLabel {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.bookingsDashboardGrid {
  margin-top: 10px;
}

.dashCardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.categoryTag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 6px;
}

.statusTag {
  font-size: 12px;
  font-weight: 600;
  color: #0d9488;
}

.dashCardTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dashCardSub {
  font-size: 13px;
  color: #94a3b8;
  line-height: 18px;
  margin-bottom: 16px;
}

.dashCardBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.dashPrice {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.dashPrice small {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}

.btnSm {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  background: #fffaf0;
  color: var(--themeBlack);
  border: none;
  transition: all 0.3s ease;
}

.btnSm:hover {
  background: var(--themeBlack);
  color: var(--white);
}

/* Day List Navigation */
.dayList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dayList li {
  background: #182834;
  border-radius: 10px;
  padding: 10px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dayList li small {
  display: block;
  font-size: 11px;
  color: #5c7e95;
  margin-bottom: 2px;
  font-weight: 500;
}

.dayList li h4 {
  font-size: 13px;
  color: #c0d4e3;
  margin: 0;
  font-weight: 600;
  line-height: 1.25;
}

.dayList li:hover {
  background: #203544;
}

.dayList li.active {
  background: #2b4555;
  border-color: rgba(0, 161, 255, 0.2);
}

.dayList li.active small {
  color: #7faecb;
}

.dayList li.active h4 {
  color: #ffffff;
}

/* Timeline Card */
.itineraryTimelineCard {
  background: #1e303d;
  border-radius: 12px;
  padding: 18px 20px;
  height: 100%;
}

.timelineCardHeader small {
  font-size: 12px;
  color: #7faecb;
  display: block;
  margin-bottom: 2px;
}

.timelineCardHeader h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  border-bottom: 1px solid #2e4453;
  padding-bottom: 10px;
}

.itineraryTimeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.timelineItem {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.timelineTime {
  width: 65px;
  flex-shrink: 0;
  font-size: 12px;
  color: #88a7bc;
  font-weight: 500;
  padding-top: 2px;
}

.timelineMarker {
  position: relative;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.timelineDot {
  width: 10px;
  height: 10px;
  background: #00a1ff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 161, 255, 0.7);
  flex-shrink: 0;
  margin-top: 5px;
  z-index: 2;
}

.timelineLine {
  position: absolute;
  top: 10px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border: 1px dashed #2d4556;
  z-index: 1;
}

.timelineItem:last-child .timelineLine {
  display: none;
}

.timelineContent {
  flex-grow: 1;
  padding-left: 6px;
  padding-bottom: 4px;
}

.timelineContent h5 {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.timelineContent p {
  font-size: 11.5px;
  color: #7093aa;
  margin: 0;
}

/* Side Widgets */
.tripSideWidgets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.estimatedCostCard {
  background: #bde3fc;
  border-radius: 12px;
  padding: 29px 16px;
  text-align: center;
  color: #0d1720;
}

.estimatedCostCard .costLabel {
  font-size: 14px;
  font-weight: 600;
  color: #162836;
  display: block;
  margin-bottom: 6px;
}

.estimatedCostCard .costPrice {
  font-size: 26px;
  font-weight: 700;
  color: #0d1720;
  line-height: 1;
  margin-bottom: 4px;
}

.estimatedCostCard .costSub {
  font-size: 11.5px;
  color: #425868;
  display: block;
  margin-bottom: 14px;
}

.estimatedCostCard .viewDetailsBtn {
  background: #0d1822;
  color: #ffffff;
  border-radius: 30px;
  padding: 8.5px 18px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  display: block;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
}

.estimatedCostCard .viewDetailsBtn:hover {
  background: #182a39;
  color: #ffffff;
}

.weatherWidgetCard {
  /* background: #1e3e60; */
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.forecastRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #94b8d4;
}

.forecastRow .dayName {
  font-weight: 500;
}

.forecastRow i {
  font-size: 12px;
  color: #ffd54f;
}

.forecastRow .dayTemp {
  font-weight: 700;
  color: #ffffff;
}

/* ===============workspaceSec start============= */

/* ===============testimonial sec start========== */
.testimonialSec {
  padding: 100px 0;
  background: var(--white);
}

.testimonialContents {
  max-width: 370px;
}

.testimonialContents p {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: var(--themeBlack);
}

.testimonialOuter {
  border-radius: 30px;
  overflow: hidden;
}

.tesContent {
  position: relative;
  padding: 170px 30px;
}

.tesItem {
  background: var(--white);
  border-radius: 20px;
  max-width: 230px;
  padding: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  z-index: 3;
  position: relative;
}

.tesItem h6 {
  font-size: 14px;
  color: var(--themeBlack);
  font-weight: 700;
  position: relative;
  margin-bottom: 5px;
  padding-left: 8px;
  color: #000000;
}

.tesItem h6::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--themeRed);
}

.tesItem p {
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0%;
  color: var(--themeBlack);
}

.tesItem.tes02 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.tesItem.tes03 {
  margin-top: 80px;
  margin-left: 60px;
}

.customNav {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

.customNav .swiper-button-prev,
.customNav .swiper-button-next {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--themeBlack);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.customNav .swiper-button-prev::after,
.customNav .swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

.customNav .swiper-button-prev:hover,
.customNav .swiper-button-next:hover {
  background: var(--themeBlack);
  color: var(--white);
  transform: translateY(-2px);
}

.travelTestimonialSlider {
  position: relative;
  z-index: 3;
}

.tesmobileframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ================next trip section============== */
.nextTripSec {
  padding: 100px 0;
  overflow: hidden;
}

.nextTripWrapperCard {
  background: linear-gradient(180deg, #eee2cc 0%, #ffedd0 100%);
  border-radius: 40px;
  padding: 50px 30px 170px;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.nexTripContent {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.nextTripInner {
  max-width: 640px;
  margin: auto;
}

.nexTripContent p {
  color: var(--themeBlack);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 16px 0 32px;
}

.nextTravelBtns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nextTravelBtns .btnPrimary.outLine,
.nextTravelBtns .btnPrimary:hover {
  border: 1px solid var(--themeBlack);
  color: var(--themeBlack) !important;
  background: transparent;
}

.nextTravelBtns .btnPrimary.outLine:hover {
  background: var(--themeBlack);
  color: var(--white) !important;
  transition: 0.5s;
}

.nextTravelBtns .btnPrimary {
  width: 100%;
  max-width: 200px;
  justify-content: center;
}

.tripPoster {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ================travel DNA start============== */
.travelDNA {
  padding: 100px 0;
  background: radial-gradient(
    29.11% 73.27% at 64.04% 47.13%,
    #654b15 0%,
    #402e0b 100%
  );
}

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

.DNAcontent .sectionTitle h2 strong,
.DNAcontent .sectionTitle h2 strong .word {
  color: #e0cea9;
}

.travelDNA .sectionTag {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.DNAcontent p {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.dnaSignals {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dnaSignals li {
  flex: 1;
  background: #ffffff1a;
  border-radius: 12px;
  padding: 24px 15px;
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.dnaSignals li:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.35);
}

.dnaSignals li h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}

.dnaSignals li small {
  font-size: 13px;
  color: #e0cea9;
  font-weight: 500;
  display: block;
  line-height: 1.2;
}

.travelDnaPoster {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(30px);
}

.travelDnaPoster img {
  width: 100%;
  max-width: 222px;
  display: block;
  margin: 50px auto 0;
  height: auto;
  position: relative;
  z-index: 1;
}

.postertags {
  position: absolute;
  background: #71551c;
  color: #e0cea9;
  padding: 8px 22px;
  border-radius: 44px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

/* Individual tag placements with offsets & delay */
.tag1 {
  top: 12%;
  left: -5%;
  transform: rotate(6deg);
}

.tag2 {
  top: -15%;
  left: 45%;
  transform: translateX(-50%) rotate(-5deg);
}

.tag3 {
  top: 12%;
  right: -5%;
  transform: rotate(8deg);
}

.tag4 {
  bottom: 45%;
  left: -5%;
  transform: rotate(-10deg);
}

.tag5 {
  bottom: 43%;
  right: -5%;
  transform: rotate(-8deg);
}

/* ================travel DNA end============== */

/* ===============footer start==================== */
.footerArea {
  background: #0a2230;
  padding: 80px 0 0;
  border-top: 2px solid var(--themeRed);
}

.footerArea h4 {
  font-weight: 600;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6b9cb8;
  margin-bottom: 20px;
}

.footCol ul {
  display: inline-grid;
  gap: 5px;
}

.footCol ul > li > a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  display: inline-block;
}

.subscriptionForm {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 3px;
  max-width: 480px;
  width: 100%;
  background: transparent;
  margin-top: 20px;
}

.subscriptionForm .form-control {
  background: transparent !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: none !important;
  padding: 5px 15px !important;
  height: auto !important;
  font-size: 16px;
  min-height: auto !important;
}

.subscriptionForm .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.subscriptionForm .btnPrimary {
  background: var(--themeRed) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  font-weight: 600 !important;
  border: 1px solid var(--themeRed) !important;
  position: static;
}

.subscriptionForm .btnPrimary:hover {
  background: transparent !important;
  color: var(--themeRed) !important;
}

.subscriptionForm .btnPrimary span i {
  color: var(--white);
  transition: color 0.5s;
}

.subscriptionForm .btnPrimary:hover span i {
  color: var(--themeRed);
}

.subcriptionHead {
  margin-top: 80px;
}

.travelProvider h2 {
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 15px;
}

.travelProvider p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 400;
}

.travelProvider ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.travelProvider ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.travelProvider ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #214f6b;
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.travelProvider ul li span {
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
}

.travelProvider .btnPrimary {
  background: var(--themeRed) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  padding: 8px 28px !important;
  font-weight: 600 !important;
  border: 1px solid var(--themeRed) !important;
}

.travelProvider .btnPrimary:hover {
  background: transparent !important;
  color: var(--themeRed) !important;
}

.copyRight {
  background: #214f6b;
  padding: 12px 0;
  margin-top: 80px;
}

.copyRight p {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0%;
  color: var(--white);
  text-align: center;
}

.copyRight p a {
  font-weight: 600;
  color: var(--white);
  transition: 0.5s;
}

/* .copyRight p a:hover {
  color: var(--themeRed);
  transition: 0.5s;
} */

/* ===============footer start==================== */
