@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
  font-family: 'Nunito', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  transition: all .2s linear;
}
:root {
  --red: red;
  --yellow: rgb(253, 194, 0);
  --green: #0b132b;
  --hover-color:#00aaff;
  --light-green: #f0f2fd;
  --light-color:#777;
  --light-white:#eee;
  --black:#444;
  --white:#fff;
  --border: 2px solid var(--green);
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --val: 250px;
  --graph-size: 2rem; 
}


.graph-text {
  font-size: var(--graph-size);
  line-height: 2;
  color: var(--light-color);
  font-weight: bolder;
}



html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 50%;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--green);
}

section{
  padding: 20px 8%;
}

.heading{
  margin-bottom: 5px;
  font-size: 3.5px;
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  border: var(--border);
  background: var(--yellow);
  color: var(--green);
  cursor: pointer;
  text-transform: capitalize;
}

.btn:hover{
  background: var(--hover-color);
  color: var(--white);
}


/*  HEADER / NAVBAR  */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 5px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

header.sticky {
  background: #0b132b; /* solid background when scrolling */
}

/* LOGO */
.logo{
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
}
.logo span{
  padding-top: 3px;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.2;
  animation: slideRightLeft 3s ease-in-out infinite;
}
.logo span b{
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 790;
}

.logo img{
  width: 55px;
  height: 55px;
  object-fit: contain;
  animation: slideLeftRight 3s ease-in-out infinite;
}

.caption h3 small{
  font-size: 10px;
  border-radius: 5px;
  padding: 5px;
  background-color: rgba(2, 39, 39, 0.308);
  color: white;
  border: 1px solid white;
}
.caption {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}


/*Keyframes for image (left → right → left) */
@keyframes slideLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}

/* Keyframes for text (right → left → right) */
@keyframes slideRightLeft {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}


/* NAV LINKS */
.navbar {
  margin-top: 5px;
  display: flex;
  gap: 20px;
  border-radius: 20px;
  padding: 6px 50px;
  background: #0b132b; /* transparent look */
  backdrop-filter: blur(10px);
}
.navbar a {
  color: #eee;
  text-transform: capitalize;
  transition: 0.3s;
  display: block;
  width: 100%;
  color: #f1f5f9;
  font-size: 1.9rem;
  padding: .8rem 1rem;
  margin: .2rem 0;
  text-align: left;
  border-radius: .6rem;
  transition: background .18s, transform .18s;
}
.navbar a:hover {
  transform: scale(1.1);
  color: #34a4e0;
}

.navbar.active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1998; /* behind .navbar but above page */
  pointer-events: none;
}

/* ICONS */
.icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2100;
}

.icons div:hover {
  color: #00aaff;
}

/* MOBILE MENU */
#menu-btn {
  display: none;
}

/* CLOSE ICON (INSIDE NAV FOR MOBILE) */
#close-navbar {
  display: none;
}


/*  ACCOUNT FORM (LOGIN / REGISTER) */
.account-form {
  position: fixed;
  top: 0px;
  right: -105%;
  width: 320px;
  background: #fff;
  height: 100%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 2200;
}

.account-form.active {
  right: 0;
  box-shadow: 0 0 0 100vw rgba(0,0,0,0.7);
}

#close-form {
  position: absolute;
  top: 40px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

#close-form:hover {
  transform: rotate(90deg);
  color: var(--hover-color);
}

/* FORM TOGGLE BUTTONS */
.account-form .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.account-form .buttons .btn {
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.4rem;
}
.account-form .buttons .btn.active,
.account-form .buttons .btn:hover {
  background: var(--hover-color);
  color: #fff;
}

/* FORM ELEMENTS */
.account-form form {
  width: 100%;
  display: none;
  text-align: center;
}
.account-form form.active {
  display: block;
}
.account-form h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #333;
}
.account-form .box {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 17px;
}
.account-form .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.account-form .flex label,
.account-form .flex a {
  font-size: 16px;
  color: #555;
}
.account-form .flex a:hover {
  text-decoration: underline;
  color: #00aaff;
}

/* FORM BUTTON */
.account-form .btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.account-form .btn:hover {
  background: #0077cc;
}


/* home section starts here*/

.home {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;    /* pull to left edge of viewport */
  margin-right: -50vw;   /* pull to right edge of viewport */
  width: 100vw;          /* full viewport width */
  height: 65rem;         /* full viewport height */
  padding: 0;            /* override any section padding */
  overflow: hidden;
  box-sizing: border-box;
  z-index: 0;
}

.home .swiper {
  width: 100%;
  height: 100%;
}

.home .swiper-slide {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Optional: dark overlay for better text visibility */
.home .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.home .content {
  position: relative;
  z-index: 2;
  text-align: center;
}



.home .content h3, h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.home .content p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #eaeaea;
  margin-bottom: 18px;
}
/* make .home escape any container padding and occupy the viewport */


/* ensure swiper inside .home fills it */
.home .swiper {
  width: 100%;
  height: 100%;
}

/* force each slide to be viewport-sized (Swiper will still handle sliding) */
.home .swiper-wrapper {
  align-items: stretch;   /* ensure proper vertical sizing */
}

.home .swiper-slide {
  width: 100vw !important;   /* force full viewport width */
  height: 100vh !important;
  min-height: 100vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* remove any earlier narrower .swiper rule for this section */
.home .swiper,
.home .swiper .swiper-wrapper,
.home .swiper .swiper-slide {
  max-width: none;
}

.btn {
  display: inline-block;
  background: var(--hover-color);
  color: var(--red);
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.btn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
  color: var(--green);
  transform: translateX(4px) scale(1.1);
}


/* Swiper Controls */
.swiper-button-prev, .swiper-button-next {
  color: #fff;
  transition: 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  color: var(--green, #00b894);
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: var(--green, #00b894);
  opacity: 1;
}

/* home section ends here*/




/* services section starts here*/
.services {
  padding: 4rem 9%;
  background: #f9fafc;
}

.services .heading {
  text-align: center;
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.services .box {
  background: var(--light-green);
  border: var(--border);
  border-radius: 1rem;
  text-align: center;
  padding: 2rem;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.services .box img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  object-position: top; 
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.services .box h3 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.services .box p {
  font-size: 1.3rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.services .box:hover {
  background: var(--green);
  transform: translateY(-5px);
  color: var(--white);
}

.services .box:hover h3,
.services .box:hover p {
  color: var(--white);
}

/* services section ends here*/





/* destination section starts here*/

section.home-destination {
  padding: 40px 0;
}

.home-destination h2 {
  text-align: center;
  font-size: 30px;
  color: var(--black);
  margin-bottom: 20px;
}

/* Swiper Container */
.swiper {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  cursor: grab !important;
}

/* Each Slide Card */
.home-destination .slide {
  text-align: center;
  position: relative;
  width: 25px;
  background: var(--white);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.home-destination .slide:hover {
  transform: translateY(-10px);
}

.home-destination .image {
  position: relative;
  width: 100%;
}

.home-destination .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.home-destination .image h3 {
  position: absolute;
  bottom: 12px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 15px;
}

.home-destination .content {
  padding: 16px 20px;
}

.home-destination .content h3 {
  font-size: 23px;
  color: var(--green);
  margin-bottom: 10px;
}

.home-destination .content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 13px;
}

.home-destination .content .btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.home-destination .content .btn:hover {
  background: var(--hover-color);
  color: var(--green);
  font-weight: 800;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: var(--green);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--black);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--green);
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--black);
}
/* destination section ends here*/




/* FOOTER STYLING */
.footer {
  margin-top: 20px;
  background: #0b132b; /* deep navy tone for a travel brand */
  color: #eee;
  padding: 40px 5%;
  position: relative;
  border-top-right-radius: 80px;
  border-top-left-radius: 80px;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 18px;
}

.footer .box h3 {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}


.footer .box p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

.footer .box .link {
  display: block;
  font-size: 15px;
  color: #ccc;
  margin: 8px 0;
  transition: 0.3s;
}

.footer .box .link:hover {
  color: #00aaff;
  text-decoration: underline;
}

.footer .share {
  margin-top: 15px;
}

.footer .share a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #00aaff;
  color: #fff;
  font-size: 17px;
  margin-right: 7px;
  transition: 0.3s;
}

.footer .share a:hover {
  background: #0077cc;
  transform: translateY(-4px);
}

/* Newsletter */
.footer .email {
  width: 90%;
  padding: 10px 12px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer .btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  transition: 0.3s;
}

.footer .btn:hover {
  background: #0077cc;
}

/* Credit section */
.footer .credit {
  text-align: center;
  font-size: 16px;
  color: #aaa;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* LOGO */
.logo-footer{
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
}
.logo-footer span{
  padding-top: 3px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}
.logo-footer span b{
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 790;
}

.logo-footer img{
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-footer .caption h3 small{
  font-size: 12px;
  border-radius: 5px;
  padding: 5px;
  background-color: rgba(2, 39, 39, 0.308);
  color: white;
  border: 1px solid white;
}
.logo-footer .caption {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

.footer .credit span {
  color: #00aaff;
}



/* ===============================
   STICKY SOCIAL MEDIA BAR
=============================== */
.social-bar {
  position: fixed;
  top: 85%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2000;
}

.social-bar a {
  width: 60px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 40px;
  color: #fff;
  background: #25d366; 
  border-radius: 0 0.5rem 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.social-bar a:hover {
  transform: translateX(5px) scale(1.2);
  background: #0077cc;
}



/* === COUNTRY BUTTONS === */
.countries {
  text-align: center;
  padding: 5rem 5%;
  background: #f9f9f9;
}

.countries .heading {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.countries .heading span {
  color: var(--green);
}

.country-buttons {
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.country-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.8rem;
  border: 2px solid var(--green);
  color: white;
  border-radius: 5rem;
  transition: all 0.3s ease;
}

.country-buttons .btn:hover {
  background: var(--green);
  color: #fff;
}

/* === SOCIALS === */
.socials {
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2000;
}

.socials a {
  background: #fff;
  border: 1px solid #ddd;
  color: var(--green);
  font-size: 1.8rem;
  padding: .8rem;
  border-radius: 50%;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}




/* ===== Section Layout ===== */
.fly_logo-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  height: 30vh;
  background: linear-gradient(to right, #0a92aa 0%, #042949be 16%, #042949e1 25%, #042949 35%, #042949 65%, #0a92aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;    
  box-sizing: border-box;
  margin-top: 25px;
  margin-bottom: 70px;
}

.fly_logoSwiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Logo Container ===== */
.fly_logo-wrapper {
  text-align: center;
  color: #fff;
}

/* ===== Logo (Image + Text) ===== */
.fly_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
}

/* ===== Logo Image (slide in from left) ===== */
.fly_logo img {
  width: 100px;
  height: auto;
  opacity: 0;
  transform: translateX(-100);
  animation: slideInLeft 4s ease-in-out forwards infinite;
  animation-delay: 3s;
  
}

/* ===== Logo Text (slide from right) ===== */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transform: translateX(120px);
  animation: slideInRight 4s ease-in-out forwards infinite;
  animation-delay: 3s;
}

/* ===== Text Styling ===== */
.logo-text .b1 {
  font-size: 40px;
  font-weight: 700;
  color: #00aaff;
  letter-spacing: 2px;
  line-height: 1;
  transform: scaleX(1.15); /* stretch slightly to match below */
}

.logo-text .s1 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.2px;
}

/* ===== Tagline (fade out only) ===== */
.fly_tagline {
  font-size: 30px;
  color: #e5e5e5;
  margin-top: 30px;
  opacity: 0.3;
  animation: fadeOutOnly 4s ease forwards infinite;
  animation-delay: 3s; /* fades out after 5 seconds */
}

/* ===== Animations ===== */

/* Slide from left */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-350px);
  }

  25% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.1;
  }

  75% {
    opacity: 0.2;
  }

  85% {
    opacity: 0.6;
  }


  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide from right */
@keyframes slideInRight {
  0% {
    opacity: 0.1;
    transform: translateX(350px);
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5
  
  }
  75% {
    opacity: 0.2;
  }

  85% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade out only (no fade-in) */
@keyframes fadeOutOnly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}




/* ===== Private Jet Section ===== */

.private-section .swiper, 
.private-section .swiper .swiper-wrapper, 
.private-section .swiper .swiper-slide { 
  max-width: none; 
 }

/* ===== Private Jet Section ===== */
.private-section {
 position: relative;
 left: 50%;
 right: 50%;
 margin-left: -50vw;
 margin-right: -50vw;
 width: 100vw;
 height: 50vh; /* half-screen height */
 padding: 0;
 overflow: hidden;
 box-sizing: border-box;
 z-index: 10;
}

/* Swiper Base */
.private-section .swiper {
 width: 100%;
 height: 100%;
}

.private-section .swiper-wrapper {
 width: 100%;
 height: 100%;
}

/* Each Slide */
.private-section .swiper-slide {
 width: 100vw;
 height: 50vh;
 background-size: cover;
 background-position: center center;
 background-repeat: no-repeat;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
}

/* Overlay */
.private-section .swiper-slide::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.45);
 z-index: 1;
}

/* ===== Text Content ===== */
.private-section-content {
 position: relative;
 z-index: 2;
 text-align: center;
 color: #fff;
 max-width: 1200px;
 padding: 0 20px;
}

.private-section-content h1 {
 font-size: 50px;
 font-weight: 700;
 text-shadow: 3px 4px 10px rgba(0, 0, 0, 0.8);
 margin-bottom: 0.8rem;
}

.private-section-content p {
 font-size: 16px;
 color: #eaeaea;
 margin-bottom: 30px;
}

/* ===== Button Group ===== */
.button-group {
 display: flex;
 justify-content: center;
 gap: 20px;
 flex-wrap: wrap;
}

.button-group button {
 padding: 14px 35px;
 font-size: 18px;
 font-weight: 600;
 border: none;
 border-radius: 30px;
 cursor: pointer;
 transition: all 0.3s ease;
}

.book-btn {
 background: #ffd700;
 color: #000;
 padding: 14px 35px;
 font-size: 18px;
 font-weight: 600;
 border: none;
 border-radius: 30px;
 cursor: pointer;
 transition: all 0.3s ease;
}

.book-btn:hover {
 background-color: #00aaff;
 color: #0b132b;
 transform: translateY(-2px);
 transition: 0.3s ease;
 transform: translateX(4px) scale(1.1);
}

.explore-btn {
 background: transparent;
 border: 2px solid #fff;
 color: #fff;
 background-color: #0b132b;
}

.explore-btn:hover {
 background: #fff;
 color: #000;
 transform: translateY(-2px);
}




/* ===== Swiper Pagination ===== */
.swiper-pagination-bullet {
 background: #fff;
 opacity: 0.8;
}

.swiper-pagination-bullet-active {
 background: #ffd700;
}




/* ===== Floating Design Element ===== */

.floating-design {
 position: absolute;
 top: 10px;
 left: 20px;
 background-color: #00aaff;
 color: #0b132b;
 padding: 10px 25px;
 border-radius: 25px;
 text-align: center;
 line-height: 1.1;
 font-weight: 700;
 box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
 animation: blinkGlow 2.5s ease-in-out infinite;
 z-index: 10;
 display: inline-block;
 min-width: 160px;
}

/* Text styling for each line */
.floating-design .book {
 font-size: 60px;
 
}

.floating-design .your-jet {
 font-size: 25px;
 display: block;
}

.floating-design .with {
 font-family: 'Great Vibes', cursive;
 margin: 0;
 line-height: 0.7;
 font-size: 30px;
 display: block;
}

.floating-design .percent {
 font-size: 70px;
 color: #ffffff;
 display: block;
}

.floating-design .discount {
 color: #ffd700;
 font-size: 25px;
 text-transform: uppercase;
 letter-spacing: 2px;
 display: block;
}

/* Soft blinking / glowing animation */
@keyframes blinkGlow {
 0% {
   opacity: 1;
   box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
 }
 50% {
   opacity: 0.6;
   box-shadow: 0 0 35px rgba(0, 170, 255, 0.9);
 }
 100% {
   opacity: 1;
   box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
 }
}



/* ===== Section ===== */
.private-jets {
  padding: 4rem 2rem;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #00aaff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Jet Card ===== */
.jet-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.2);
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

.jet-card.image-right {
  flex-direction: row;
}

.jet-card.image-left {
  flex-direction: row-reverse;
}

/* ===== Hover Flip Effect ===== */
.jet-card:hover {
  flex-direction: row-reverse; /* Flip layout */
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0, 170, 255, 0.4);
}

.jet-card.image-left:hover {
  flex-direction: row; /* Flip opposite direction for alternate ones */
}

/* ===== Jet Image ===== */
.jet-image {
  flex: 1;
  text-align: center;
  transition: all 0.6s ease;
}

.jet-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
  transition: all 0.6s ease;
}

.jet-image img:hover {
  transform: scale(1.05);
}

/* ===== Jet Info ===== */
.jet-info {
  flex: 1;
  transition: all 0.6s ease;
}

.jet-info h2 {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 1rem;
}

.jet-info p {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ===== Book Button ===== */
.book-btn {
  background-color: #00aaff;
  color: #fff;
  padding: 14px 30px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #ffd700;
  color: #0b132b;
  transform: translateY(-3px);
}



/* ===== Responsive ===== */

/* Tablet (iPads, 768px–1024px) */
@media (max-width: 1024px){
  .navbar a {
    font-size: px;
    color: #eee;
    text-transform: capitalize;
    transition: 0.3s;
  }
  .navbar a:hover {
    color: #00aaff;
    font-size: 20px;
  }
  .private-section {
    height: 40vh; /* slightly shorter */
  }
  .floating-design {
    top: 15px;
    left: 20px;
    padding: 10px 5px;
    border-radius: 20px;
    min-width: 150px;
  }
 
  .floating-design .book {
    font-size: 40px;
  }
 
  .floating-design .your-jet {
    font-size: 20px;
  }
 
  .floating-design .with {
    font-size: 25px;
  }
 
  .floating-design .percent {
    font-size: 50px;
  }
 
  .floating-design .discount {
    font-size: 15px;
  }
  .private-section-content{
    top: 0;
    padding-top: 20px;
    padding-bottom: 70px;
    max-width: 600px;
  }
 .private-section-content h1 {
   font-size: 30px;
 }

 .private-section-content p {
   font-size: 20px;
 }

 .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
   }

   .button-group button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
   }

   .floating-design{
    position: absolute;
     padding: 10px 10px;
   }

   .logo-text .b1 {
    font-size: 36px;
    transform: scaleX(1.1);
  }

  .logo-text .s1 {
    font-size: 15px;
  }

  .fly_tagline {
    font-size: 23px;
  }

  /* === About Page ==== */
  .why-choose {
    padding: 4rem 5%;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile layout  */
@media (max-width:900px){
  section{ 
    padding: 3rem rem;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -105%;
    background: #0b132b;
    width: 30rem;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 2400;
  }

  .navbar.active {
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, .8);
    right: 0;
  }

  #menu-btn {
    display: block;
  }

  #close-navbar {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
  }

  .navbar a {
    border-bottom: 1.5px solid var(--hover-color);
    color: #fff;
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }

  #menu-btn {
    display: inline-block;
  }

  .services .box-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .home .content h1 {
    font-size: 4rem;
  }
  .private-section-content{
    top: 0;
    padding-top: 10px;
    padding-bottom: 70px;
    max-width: 480px;
  }
  .floating-design {
    top: 30px;
    left: 10px;
    padding: 10px 5px;
    border-radius: 20px;
    min-width: 150px;
  }
 
  .floating-design .book {
    font-size: 30px;
  }
 
  .floating-design .your-jet {
    font-size: 16px;
  }
 
  .floating-design .with {
    font-size: 18px;
  }
 
  .floating-design .percent {
    font-size: 30px;
  }
 
  .floating-design .discount {
    font-size: 15px;
  }
  .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
   }

   .button-group button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
   }
  .private-section-content h1 {
   font-size: 30px;
   }

   .fly_logo-section{
    padding-bottom: 5px;
   }

   .jet-card,
  .jet-card.image-left,
  .jet-card.image-right,
  .jet-card:hover {
    flex-direction: column;
    text-align: center;
  }

  .jet-image img {
    max-width: 100%;
  }

  .jet-info h2 {
    font-size: 1.6rem;
  }

  .jet-info p {
    font-size: 1rem;
  }

  .book-btn {
    width: 200px;
  }
}



/* Mobile (phones, up to 768px) */
@media (max-width: 768px){
  
  #menu-btn{
    display: inline-block;
  }
 
  .navbar{
    position: fixed;
    top: 0; right: -105%;
    width: 30rem;
    background: #0b132b;
    height: 100%;
    flex-flow: column;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 2400;
  }

  #close-navbar {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
  }

  .navbar a {
    border-bottom: 1.5px solid var(--hover-color);
    color: #fff;
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }

  .navbar.active{
   box-shadow: 0 0 0 100vw rgba(0, 0, 0, .8);
   right: 0;
  }

  #close-navbar{
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
  }
 
  .home .slide {
    padding: 0 2rem;
    justify-content: center;
    text-align: center;
  }
  .home .content h3 {
    font-size: 2rem;
  }
  .home .content {
    width: 90%;
  }

  .home .slide .content h3{
    font-size: 3rem;
  }

  .services .box-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .private-section {
    height: 30vh; /* slightly shorter */
  }

  .private-section .swiper-slide {
    background-position: center center; /* show center of image */
  }

  .private-section-content{
    top: 0;
    padding-top: 14px;
    padding-bottom: 90px;
    max-width: 420px;
  }
 .private-section-content h1 {
   padding-top: 2px;
   font-size: 25px;
 }

 .private-section-content p {
   font-size: 16px;
   margin-bottom: 15px;
 }

 .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 50px;
   }

   .button-group button {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    width: 155px;
    cursor: pointer;
    transition: all 0.3s ease;
   }

  .fly_logo-section {
    height: 30vh;
  }

  .fly_logo img {
    width: 70px;
  }

  .floating-design {
    top: 15px;
    left: 10px;
    padding: 10px 5px;
    border-radius: 20px;
    min-width: 120px;
  }
 
  .floating-design .book {
    font-size: 22px;
  }
 
  .floating-design .your-jet {
    font-size: 18px;
  }
 
  .floating-design .with {
    font-size: 12px;
  }
 
  .floating-design .percent {
    font-size: 22px;
  }
 
  .floating-design .discount {
    font-size: 9px;
  }

  .logo-text .b1 {
    font-size: 36px;
    transform: scaleX(1.1);
  }

  .logo-text .s1 {
    font-size: 15px;
  }

  .fly_tagline {
    font-size: 23px;
  }

  .footer {
    padding: 4rem 3%;
  }

  .footer .box p,
  .footer .box .link {
    font-size: 1.4rem;
  }

  .footer .btn {
    padding: 0.9rem 2rem;
  } 
}


@media (max-width: 690px) {
  .private-section {
    height: 41vh; /* slightly shorter */
  }

  .private-section .swiper-slide {
    background-position: center bottom; /* show center of image */
  }
  .private-section-content{
    top: 45px;
    padding-top: 0px;
    padding-bottom: 90px;
    max-width: 400px;
  }
 .private-section-content h1 {
   padding-top: 2px;
   font-size: 25px;
 }

 .private-section-content p {
   font-size: 14px;
   margin-bottom: 15px;
 }

 .button-group {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 50px;
   }

   .button-group button {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
   }

  .fly_logo-section {
    height: 30vh;
  }

  .fly_logo img {
    width: 70px;
  }

  .floating-design {
    top: 110px;
    left: 50px;
    padding: 5px 5px;
    border-radius: 20px;
    min-width: 80px;
  }
 
  .floating-design .book {
    font-size: 18px;
  }
 
  .floating-design .your-jet {
    font-size: 14px;
  }
 
  .floating-design .with {
    font-size: 14px;
  }
 
  .floating-design .percent {
    font-size: 22px;
  }
 
  .floating-design .discount {
    font-size: 8px;
  } 
}

/* Extra Small Phones (up to 480px) */
@media (max-width: 480px){
  html{
    font-size: 50%;
  }

  .heading{
    font-size: 3rem;
  }

  .services .box-container {
    grid-template-columns: 1fr;
  }
  .home .content h3 {
    font-size: 2rem;
  }
}


@media (max-width: 420px){
  .logo-text .b1 {
    font-size: 30px;
    transform: scaleX(1.1);
  }

  .logo-text .s1 {
    font-size: 12px;
  }

  .fly_tagline {
    font-size: 18px;
  }

  .floating-design {
    top: 110px;
    left: 50px;
    padding: 5px 5px;
    border-radius: 20px;
    min-width: 80px;
  }
 
  .floating-design .book {
    font-size: 18px;
  }
 
  .floating-design .your-jet {
    font-size: 14px;
  }
 
  .floating-design .with {
    font-size: 14px;
  }
 
  .floating-design .percent {
    font-size: 22px;
  }
 
  .floating-design .discount {
    font-size: 8px;
  }
}

@media (max-width: 380px) {
  .floating-design {
    top: 110px;
    left: 10px;
    padding: 5px 5px;
    border-radius: 20px;
    min-width: 80px;
  }
}

@media (max-width: 340px) {
  .floating-design {
    top: 110px;
    left: 5px;
    padding: 5px 5px;
    border-radius: 20px;
    min-width: 80px;
  }
 
  .floating-design .book {
    font-size: 18px;
  }
 
  .floating-design .your-jet {
    font-size: 14px;
  }
 
  .floating-design .with {
    font-size: 14px;
  }
 
  .floating-design .percent {
    font-size: 22px;
  }
 
  .floating-design .discount {
    font-size: 8px;
  }

  .button-group {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-flow: column;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 50px;
   }

   .button-group button {
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
    width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
   }
   .private-section-content{
    top: 30px;
    padding-top: 0px;
    padding-bottom: 90px;
    max-width: 400px;
  }
}

@media (max-width: 300px) {
 
   .private-section-content{
    top: 40px;
    padding-top: 0px;
    padding-bottom: 90px;
    max-width: 400px;
  }
  .private-section-content h1 {
    padding-top: 2px;
    font-size: 20px;
  }
 
  .private-section-content p {
    font-size: 10px;
    margin-bottom: 15px;
  }
}

/* === About page ====*/
 /* Hero Section */
    .about-hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: var(--white);
      text-align: center;
      padding: 2rem 2rem;
    }

    .about-hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .about-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }

  

    .about-section img {
      width: 100%;
      border-radius: 15px;
      box-shadow: var(--shadow);
    }

    .about-text h2 {
      font-size: 5rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .about-text p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }

    /* Why Choose Us */
.why-choose {
  text-align: center;
  padding: 5rem 8%;
  background: #f9f9f9;
}

.why-choose h2 {
  font-size: 2rem;
  color: #0099cc;
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
}

.why-choose h2 span {
  color: #00bcd4;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.feature {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 350px;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature i {
  font-size: 2.5rem;
  color: #0099cc;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #111;
}

.feature p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}




  