/* section 1 css start from here  */
.hero_section {
  width: 100%;
  height: 937px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  display: flex;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero_section_container {
  width: var(--Global-Width);
  margin: auto;
  position: relative;

}
.hero_section_container .start {
  font-size: var(--font-body);
  font-weight: 700;
  color: #1C1C1C;
  font-family: var(--Neue-Montreal-Bold);
  text-transform: uppercase;
  letter-spacing: 5px;
}
.hero_section_container h1 {
  font-family: var(--Red-Hat-Display);
  font-weight: 500;
  font-size: var(--font-h1);
  color: #4C2A4F;
  line-height: 1em;
}
.hero_section_container span {
  font-family: var(--Red-Hat-Display);
  font-weight: 400;
  font-size: var(--font-h2);
  color: #4C2A4F;
}
.hero_section_container p {
  font-family: var(--Neue-Montreal-Regular);
  font-weight: 400;
  font-size: var(--font-body);
  color: #444444;
  line-height: 1.4em;
  width: 58%;
  padding-top: 3%;
}
.text_wrapper p{
  width: auto !important;
}
.hero_btns {
  padding-top: 3%;
  display: flex;
  gap: 20px;
}
.hero_btns .let_connect {
  display: contents;
  width: 100%;
  gap: 20px;
}
.hero_btns a .let_connect_content {
  background-color: #4C2A4F;
  overflow: hidden;
  padding: 1% 2%;
  border-radius: 50px;
  align-self: center;
}
.let_connect_content p {
  color: #fff;
  font-size: var(--font-body);
  font-weight: 400;
  font-family: var(--Red-Hat-Display);
  /* margin: 0; */
  display: block;
  width: auto;
}
.hero_btns a .plane_img {
  background-color: #4C2A4F;
  padding: 1.5%;
  border-radius: 50px;
  display: flex;
}
.hero_btns a .plane_img img {
  width: 100%;
  height: auto;
}
.let_connect:hover .let_connect_content p {
  animation: rollup 0.6s ease forwards;
}
.let_connect:hover .plane_img img {
  animation: rollright 0.6s ease forwards;
}
.individual_para {
  position: absolute;
  top: 0;
  color: #fff;
  width: var(--Global-Width);
  justify-self: center;
  padding-top: 15%;
  font-family: var(--Neue-Montreal-Regular);
}
.individual_para p {
  width: 70%;
  padding-bottom: 2%;
}
/* Offer and Legacy */
.marquee_scope {
	font-family: var(--Neue-Montreal-Regular);
	/* Forces the element to be the full width of the screen */
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    --marquee-bg: #4C2A4F; /* Your primary purple */
    --marquee-tag-bg: #FFFFFF; /* Brighter purple for the tag */
    --marquee-text-color: #4C2A4F;
    overflow: hidden;
}

.marquee_scope .marquee-banner {
    background: var(--marquee-bg);
    display: flex;
    align-items: center;
    height: 50px; /* Adjust based on your design */
    width: 100%; /* Now stretches across the 100vw wrapper */
}

.marquee_scope .marquee-tag {
    background: #c3c3c3;
    color: var(--marquee-text-color);
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    position: relative;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
}

.marquee_scope .marquee-content-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee_scope .marquee-text {
    display: flex;
    white-space: nowrap;
    /* Use the variable calculated by JS, fallback to 20s */
    animation: marquee-scroll var(--duration, 20s) linear infinite;
	will-change: transform; /* Professional tip for smoother animation */
}

.marquee_scope .marquee-text span {
    color: #ffffff;
    font-size: 18px;
    padding-left: 50px; /* Space between loops */
    font-family: 'Outfit', sans-serif;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover for readability */
.marquee_scope .marquee-banner:hover .marquee-text {
    animation-play-state: paused;
}
/* Offer and Legacy Ends */
/* Img Slider Start */
.company-slider {
  width: 100%;
  overflow: hidden;
  padding: 2% 0;
}
.company-slider-track {
  display: flex;
  align-items: center;
  column-gap: 60px;
  width: max-content;
  animation: company-marquee 20s linear infinite;
}
.company-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.company-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* Img Slider End */

/* Experience Starts */
.experience {
  background: url(/wp-content/uploads/2026/03/experience_bg.webp) no-repeat center center/cover;
  padding-top: 4%;
}
.experience-main{
	display: flex;
	width: var(--Global-Width);
	margin: 0 auto;
}
.experience-content {
  display: flex;
  width: 70%;
  flex-direction: column;
  gap: 24px;
  padding-right:50px;
}
.experience-content h2 {
  font-size: var(--font-h3);
  font-family: var(--Red-Hat-Display);
  text-align: left;
  font-weight: 500;
}
.experience-content p {
  font-size: var(--font-body);
  font-family: var(--Red-Hat-Display);
  text-align: left;
}
.experience-form{
	width:30%;
	background:#4C2A4F;
	border-radius:20px;
}
.experience img {
  width: 100%;
  height: auto;
}
/* Experience End */

/* Why Choose Start */
.why-choose {
  background: linear-gradient(to top, #4c2a4f 34%, #ffffff 98%);
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}
.why-title {
  width: var(--Global-Width);
  display: flex;
  flex-direction: column;
  row-gap: 26px;
  align-items: center;
}
.why-title h2 {
  font-family: var(--Red-Hat-Display);
  color: #fff;
  font-size: var(--font-h1);
  text-align: center;
  font-weight: 400;
}
.why-title p {
  font-family: var(--Neue-Montreal-Regular);
  font-size: var(--font-h6);
  color: #fff;
  line-height: 1.2em;
  text-align: center;
  width: 74%;
}
.why-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--Global-Width);
  gap: 20px;
}
.why-content-sub {
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  row-gap: 10px;
  height: 390px;
  border: 1px solid #fff;
}
.why-svg {
  width: 24%;
}
.why-svg img {
  width: 100%;
  height: 100%;
}
.why-content-sub h6 {
  font-family: var(--Red-Hat-Display);
  font-weight: 400;
  font-size: var(--font-h6);
  color: #fff;
}
.why-content-sub p {
  font-family: var(--Neue-Montreal-Regular);
  color: #fff;
  font-size: var(--font-body);
  line-height: 1.2em;
  padding: 4% 0 10% 0;
}

/* Why Choose End */

/* section 4 css start from here  */
.section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.bg {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/2026/03/passport.webp") center/cover
    no-repeat;
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.38) 40%,
    rgba(0, 0, 0, 0.68) 100%
  );
}
.flight-title {
  position: absolute;
  top: 0;
  color: #fff;
  width: var(--Global-Width);
  justify-self: center;
  padding-top: 5%;
  font-family: var(--Neue-Montreal-Regular);
}
.flight-title p {
  font-size: var(--font-body);
}
.flight-title h2 {
  font-size: var(--font-h1);
}
.layout {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
}
/* SERVICES WRAPPER */
.services {
  display: flex;
  align-items: flex-start;
  height: 360px;
  width: 40%;
}
.section_flex {
  display: flex;
}
/* ── DOT LINE — only 4 dots, fixed beside content ── */
.dot-line {
  position: relative;
  width: 18px;
  height: 536px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.dot-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 1;
  flex-shrink: 0;
}
.dot.filled {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.88);
}
.dot.hollow {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
/* ── CONTENT — scrollable, shows 3 items ── */
.content {
  width: 520px;
  height: 560px;
  overflow-y: scroll;
  padding-left: 15%;
  padding-right: 20%;
  scroll-snap-type: y mandatory;
  /* hide native scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.content::-webkit-scrollbar {
  display: none;
}
.item {
  height: auto;
  padding: 0px 0 18px 0px;
  border-bottom: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-shrink: 0;
  opacity: 1;
  scroll-snap-align: start;
  transition: opacity 0.3s;
}
.item:last-child {
  border-bottom: none;
}
.item.active {
  opacity: 1;
  justify-content: start;
}
.item h3 {
  font-family: var(--Red-Hat-Display);
  font-size: var(--font-h6);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
  margin-top: 20px;
}
.content .item:nth-child(1) h3 {
  margin-top: 0px;
}
/* .item.active h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
} */
.item p {
  font-size: 16px;
  line-height: 1.3em;
  color: #ffffff;
  font-family: var(--Neue-Montreal-Regular);
  font-weight: 400;
  margin-bottom: 8px;
  overflow: hidden;
}
.arrow-btn {
  width: max-content;
  height: max-content;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  padding: 1.5%;
}
/* ── CUSTOM SCROLLBAR — right side ── */
.scrollbar_flight {
  width: 2px;
  height: 560px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  margin-left: 18px;
  position: relative;
}
.scrollbar-thumb_flight {
  position: absolute;
  top: 0;
  left: -4px;
  width: 10px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.1s linear;
}
.flight-slider-hor {
  overflow: hidden;
  width: 100%;
  padding: 6% 0 1% 0;
}
.flight-slider-hor-track {
  display: flex;
  column-gap: 50px;
  justify-self: center;
  width: 80%;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
  padding: 2% 2% 0 2%;
}
.flight-slides-hor {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  background-color: transparent;
  flex: 0 0 calc(100% / 3.24);
  padding-bottom: 2%;
  border-bottom: 1px solid #fff;
}
.flight-slider-hor-track::-webkit-scrollbar {
  display: none;
}
.flight-slides-hor h4 {
  font-family: var(--Red-Hat-Display);
  font-size: var(--font-h6);
  font-weight: 400;
  color: #fff;
}
.flight-hor-button {
  display: flex;
  align-items: end;
}
.flight-hor-button p {
  font-family: var(--Neue-Montreal-Regular);
  font-size: 16px;
  color: #fff;
}
.flight-hor-scrollbar {
  width: 60%;
  margin: auto;
  height: 2px;
  background: #ffffff;
  position: relative;
  margin-top: 4%;
}
.flight-hor-thumb {
  width: 60px;
  height: 7px;
  background: #ffffff;
  position: absolute;
  top: -2.5px;
  left: 0;
}
.individual_para {
  position: absolute;
  top: 0;
  color: #fff;
  width: var(--Global-Width);
  justify-self: center;
  padding-top: 15%;
  font-family: var(--Neue-Montreal-Regular);
}
.individual_para p {
  width: 92%;
  padding-bottom: 2%;
  font-size: var(--font-body);
}
.flight-slider-hor {
  padding: 22% 0 1% 0;
}

/* section 4 css end from here  */

/* Plan Journey Start */
.plan-journey {
  width: 100%;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-bottom: 10%;
  background-image: url(../imgs/Plan-Journey-Bg.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plan-journey h2 {
  font-size: var(--font-h1);
  font-family: var(--Red-Hat-Display);
  text-align: center;
  font-weight: 400;
  color: #4c2a4f;
  line-height: 1.2em;
}
.plan-journey p {
  font-family: var(--Neue-Montreal-Regular);
  color: #4c2a4f;
  font-size: var(--font-h6);
  text-align: center;
  line-height: 1.2em;
}
.plan-journey-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
}
.plan-journey-cards:last-child:nth-child(3n+1) {
    grid-column: 2;
}
.plan-journey-list:hover .plan-journey-cards {
  filter: blur(4px);
  transform: scale(0.9);
  transition: all 0.3s ease-in;
}
.plan-journey-list:hover .plan-journey-cards hr,
.plan-journey-list:hover .plan-journey-cards h3,
.plan-journey-list:hover .plan-journey-cards .plan-journey-action {
  visibility: hidden;
}
.plan-journey-list .plan-journey-cards:hover {
  filter: blur(0);
  transform: scale(1.09);
  transition: all 0.3s ease-in;
}
.plan-journey-list .plan-journey-cards:hover hr,
.plan-journey-list .plan-journey-cards:hover h3,
.plan-journey-list .plan-journey-cards:hover .plan-journey-action {
  visibility: visible;
}
.plan-journey-cards {
  background-color: #4c2a4f;
  padding: 10% 6%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
/*   justify-content: center; */
  row-gap: 14px;
}
.plan-journey-cards h3 {
  font-family: var(--Red-Hat-Display);
  font-size: var(--font-h6);
  color: #fff;
  font-weight: 400;
}
.plan-journey-action {
  display: flex;
  justify-content: space-between;
}
.plan-journey-action p {
  font-family: var(--Neue-Montreal-Regular);
  font-size: var(--font-body);
  color: #fff;
  text-align: left;
  width: 100%;
  line-height: 1.2em;
}
.plan-journey-action a {
  display: flex;
  align-items: end;
  width: 30%;
  justify-content: end;
}
/* Plan Journey End */

/* Faq Start */
.faq {
  width: 100%;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-bottom: 10%;
  background-image: url(../imgs/Plan-Journey-Bg.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.faq h2 {
  font-size: var(--font-h1);
  font-family: var(--Red-Hat-Display);
  text-align: center;
  font-weight: 400;
  color: #4c2a4f;
  line-height: 1.2em;
}
.faq-slider {
  overflow: hidden;
  width: 100%;
  padding-bottom: 2%;
}
.faq-slider-track {
  display: flex;
  column-gap: 30px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
  padding: 2% 2% 0 2%;
}
.faq-slides {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #4c2a4f;
  padding: 2%;
  border-radius: 14px;
  flex: 0 0 calc(100% / 3.17);
}
.faq-slider-track::-webkit-scrollbar {
  display: none;
}
.faq-scrollbar {
  width: 70%;
  margin: auto;
  height: 2px;
  background: #4b2c4d;
  position: relative;
  margin-top: 5%;
}
/* moving rectangle */
.faq-scroll-thumb {
  width: 60px;
  height: 7px;
  background: #4b2c4d;
  position: absolute;
  top: -3px;
  left: 0;
}
.faq-category {
  background-color: #eae8ff;
  width: max-content;
  padding: 2%;
  border-radius: 6px;
}
.faq-slides .faq-category p {
  font-family: var(--Neue-Montreal-Regular);
  font-size: 12px;
  color: #4c2a4f;
  line-height: 1em;
}
.faq-slides h4 {
  font-family: var(--Red-Hat-Display);
  font-weight: 400;
  color: #fff;
  font-size: var(--font-body);
  line-height: 1.2em;
}
.faq-slides p {
  font-family: var(--Neue-Montreal-Regular);
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
}
/* Faq End */



/* ===========================
   Tablet: 769px – 1024px
   =========================== */
@media (min-width: 768px) and (max-width: 1024px) {
  /* section 1 css start from here  */
  .hero_section {
    height: 547px;
  }
  .hero_section_container p {
    width: 58%;
  }
  .hero_btns a .let_connect_content {
    width: auto;
  }
  /* section 1 css end from here  */
	
  /* Experience Start */
  .experience h2,
  .experience p {
    width: 80%;
  }
  /* Experience End */
	
  /* Why Choose Start */
  .why-choose {
    padding: 8% 0;
    row-gap: 24px;
    background: linear-gradient(to top, #4c2a4f 56%, #ffffff 98%);
  }
  .why-title {
    row-gap: 10px;
  }
  .why-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .why-content-sub {
    padding: 7%;
    row-gap: 6px;
    height: 290px;
  }
  .why-content-sub p {
    padding: 4% 0 8% 0;
  }
  .why-svg {
    width: 20%;
  }
  /* Why Choose End */
	
  /* section 4 start from here */
  .services {
    width: 54%;
  }
  .section {
    height: 750px;
  }
  .content {
    padding-left: 10%;
    padding-right: 4%;
  }
  .layout {
    align-items: start;
    padding-top: 16%;
    padding-right: 5%;
    height: 66vh;
  }
  .flight-slider-hor {
    padding: 30% 0 1% 0;
  }
  .flight-slider-hor-track {
    width: 90%;
    column-gap: 30px;
  }
  .flight-slides-hor {
    flex: 0 0 calc(100% / 2.3);
  }
  .flight-hor-button p {
    font-size: 14px;
  }
  /* section 4 end from here */
	
	
	
  /* Faq Start */
  .faq {
    padding: 0 9%;
    padding-bottom: 10%;
  }
  .faq-slides {
    flex: 0 0 calc(100% / 3.15);
  }
  .faq-slides p {
    font-size: 12px;
  }
  .faq-slider-track {
    column-gap: 16px;
  }
  .faq-scroll-thumb {
    width: 50px;
  }
  /* Faq End */
}



/* ================
   Mobile base: 300px – 768px
================ */
@media (min-width: 300px) and (max-width: 767px) {
  /* section 1 css start from here  */
  .hero_section {
    height: 470px;
    background-position: 0% 100%;
    background-size: contain;
  }
  .hero_section_container p {
    width: 100%;
    line-height: 1.5em;
  }
  .let_connect_content p {
    width: 100%;
  }
  .hero_btns a .let_connect_content {
    padding: 3%;
  }
  .hero_btns a .plane_img {
    padding: 2.9%;
  }
  /* section 1 css end from here  */
	
  /* Img Content */
  .company-slider-track {
    column-gap: 0px;
  }
  .company-slide img {
    width: 80%;
  }
  /* Img Content End */
	
  /* Experience Start */
	.experience-content{
		width: 100%;
		padding: 0px;
	}
	.experience-form{
		width: 100%;
	}
  .experience {
    padding-top: 10%;
  }
  .experience h2,
  .experience p {
    width: 100%;
  }
  /* Experience End */
	
/* Why Choose Start */
  .why-choose {
    padding: 16% 0;
    row-gap: 26px;
    background: linear-gradient(to top, #4c2a4f 72%, #ffffff 99%);
  }
  .why-title {
    row-gap: 12px;
  }
  .why-title p {
    width: 100%;
  }
  .why-content {
    grid-template-columns: 1fr;
  }
  .why-content-sub {
    padding: 8%;
    row-gap: 6px;
    height: 300px;
  }
  .why-svg {
    width: 20%;
  }
  .why-content-sub p {
    padding: 3% 0 10% 0;
  }
  /* Why Choose End */
	
  /* section 4 start from here */
  .section {
    height: auto;
  }
  .layout {
    height: 90vh;
    align-items: start;
  }
  .services {
    width: 90%;
    height: auto;
    align-items: start;
  }
  .content {
    padding-left: 6%;
    padding-right: 2%;
  }
  .flight-slider-hor {
    padding-top: 53%;
  }
  .flight-slider-hor-track {
    column-gap: 30px;
    width: 90%;
  }
  .flight-slides-hor {
    flex: 0 0 calc(100% / 1.2);
  }
  .flight-hor-button p {
    font-size: 14px;
  }
  .flight-hor-scrollbar {
    margin-top: 8%;
    width: 70%;
    height: 1px;
  }
  .flight-hor-thumb {
    height: 5px;
  }
  .individual_para {
    position: absolute;
    top: 0;
    color: #fff;
    width: var(--Global-Width);
    justify-self: center;
    padding-top: 25%;
    font-family: var(--Neue-Montreal-Regular);
  }
  /* section 4 end from here */
	
  /* Plan Journey Start */
  .plan-journey-list {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .plan-journey-cards:last-child:nth-child(3n+1) {
    grid-column: 1;
  }
  /* Plan Journey End */
	
  /* Faq Start */
  .faq-slides {
    flex: 0 0 calc(100% / 1);
    padding: 4%;
  }
  .faq-slides p {
    font-size: 12px;
  }
  .faq-scroll-thumb {
    width: 30px;
    height: 4px;
    top: -1.4px;
  }
  .faq-scrollbar {
    height: 1px;
    margin-top: 10%;
  }
  /* Faq End */
	.marquee_bar { 
		padding: 10px 0; 
	}
    .marquee_content span { 
		font-size: 14px; padding-right: 40px; 
	}
}