/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "Jost-Regular";
  src: url('../fonts/Jost-Regular.ttf');
  font-display: swap;
}

@font-face {
  font-family: "Jost-Bold";
  src: url('../fonts/Jost-Bold.ttf');
  font-display: swap;
}

@font-face {
  font-family: "Jost-ExtraBold";
  src: url('../fonts/Jost-ExtraBold.ttf');
  font-display: swap;
}

/* @font-face {
  font-family: "Kelson-Bold";
  src: url('../fonts/Armasen - Kelson-Bold.otf');
  font-display: swap;
} */


:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6e30;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #242424;
  --text: #d4cfc8;
  --text-muted: #7a746c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Jost-Regular";
  color: #fff;
  background-color: #000;

}

section {
  padding: 60px 0px;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #d8b372;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kelson-Bold";
  line-height: 30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #d8b372;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000;
  width: 40px;
  height: 40px;
  border: 1px solid #d8b372;
  border-radius: 4px;
  transition: all 0.4s;
}

a.back-to-top img {
  width: 30px;
  height: 30px;
  padding: 5px;
  transition: all 0.5s;
}

a.back-to-top:hover img {
  width: 30px;
  height: 30px;
  padding: 7px;
  transform: skew(45deg, -45deg);
  transition: all 0.5s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
section#top-header {
  padding: 0;
}

#header {
  background: #000;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
}

#header.fixed-top {
  height: 100px;
  padding: 0;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active a,
.navbar .active:focus,
.navbar li:hover>a {
  color: #d8b372
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #d8b372;
  font-size: 4ch;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/* .mobile-nav-toggle.bi-x {
  color: #fff;
} */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  /* font-family: bootstrap-icons !important; */
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/

.general-banner {
  position: relative;
/*   padding: 0; */
}

section#general-banner:before {
  content: "";
  background: rgb(0 0 0 / 22%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.banner-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.general-banner h1 {
  color: #d8b372;
  font-family: "Jost-ExtraBold";
  text-align: center;
  font-size: 70px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
section#single_slide_full_width {
  height: 100vh;
}

.slick-dots {
  bottom: -30%;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: #d8b372;
}

/* .full-width-sigle-slide{
  height: 100vh;
  position: relative;
} */
.full-width-sigle-slide img {
  height: 100%;
  width: 100%;
  /* position: relative; */
}

.full-width-sigle-slide h1 {
  text-align: center;
}

.full-width-sigle-slide .banner-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.full-width-sigle-slide .banner-text h1 {
  font-size: 70px;
  line-height: 1.2;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

p {
  color: #fff;
  font-family: "Jost-Regular";
  font-size: 18px;
  line-height: 25px;
  text-align: justify;
}

.section-title h2 {
  text-align: center;
  font-size: 50px;
  color: #d8b372;
  line-height: 1.2;

}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

.Flight-plans {
  padding-bottom: 0;
}

/* .Flight-plans-two {
  padding-top: 0;
} */


.plane-animation {
  background-color: #fefefe;
}

.tagline .section-title {
  padding: 0px 60px !important;
}

.tagline .linear-wipe {
  text-align: center;

  background: linear-gradient(to right, #d8b372 10%, #fff 40%, #FFf 60%, #d8b372 80%);
  background-size: 200% auto;

  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 5s linear infinite;

  @keyframes shine {
    to {
      background-position: 200% center;
    }
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/

.sector-page .secctor-heading p {
  text-align: center;
  padding-bottom: 30px;
}

.sector-page .sector-card {
  position: relative;
  margin: 15px 0px;
}

.sector-card:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: #00000094;
}

.sector-page .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  margin: 20px 0;
}

.sector-page .sector-card:hover .text {
  bottom: 0;
  top: 20px;
}

.sector-page .sector-card:hover .overlay {
  height: 100%;
  background-color: transparent;
  margin: 0;
}

.sector-page .text {
  color: white;
  position: absolute;
  bottom: 0%;
  right: 0%;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-page .text h3 {
  font-family: 'Montserrat-SemiBold';
  font-size: 25px;
  position: relative;

}

.sector-page .text p {
  font-size: 16px;
  line-height: 1.3;
}

.sector-page .service-detail-btn a {
  font-size: 18px;
  border: 1px solid #d8b372;
  padding: 8px 20px;
}

.elementor-widget-raven-button .raven-button:not(:hover).raven-button-widget-normal-effect-shine:before {
  /* display: block; */
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
  content: "";
  z-index: 2;
  -webkit-animation: shine 1.5s linear infinite;
  animation: shine 1.5s linear infinite;
}


.elementor-408 .elementor-element.elementor-element-4bf73375 .raven-button:not(:hover).raven-button-widget-normal-effect-shine::before {
  background: linear-gradient(to right, #ffffff00 0%, #ffffff30 50%, #ffffff00 100%);
}



.sector-page .service-detail-btn a:hover {
  font-size: 18px;
  border: 1px solid #d8b372;
  padding: 8px 20px;

}

/* .sector-page .text h3:before {
  content: "";
  background-color: #fff;
  height: 3px;
  width: 57px;
  position: absolute;
  top: -10px;
} */



.icon-box {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#000 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s !important;
}

.icon-box:hover {
  background-position: 0 100%;

}

.icon-box:hover .icon-wrapper {
  background-color: #ffffff89;
  color: #2c7bfe;
}

.icon-box:hover h4 {
  color: #000;
  transition: 0.5s ease-in-out;
}

.icon-box:hover p {
  color: #000;
  transition: 0.5s ease-in-out;
}

.icon-box p {
  color: #fff;
  transition: 0.5s ease-in-out;
}

/* 
.featured-services .icon-box {
  padding: 10px;
  position: relative;
  overflow: hidden;
  background: #000;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0px 0px 10px 1px #d8b372;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #000;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #000;
  color: #fff;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;color: #fff;
  font-size: 30px;
}

.featured-services .description {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
} */
.requirements {
  background-image: url(../img/enquiry-banner.jpg);
  background-size: 100% 100%;
}

.requirements a {
  font-size: 20px;
  padding: 8px 20px;
  /* border-radius: 10px; */
  color: #fff;
  /* background-color: #d8b372; */
  border: 1px solid #d8b372;
  overflow: hidden;
}

.enqure-now {
  position: relative;
}

.enqure-now:before {
  /* display: block; */
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(30deg);
  transform: skewX(0deg);
  content: "";
  z-index: 2;
  -webkit-animation: shine 1.5s linear infinite;
  animation: shine 1.5s linear infinite;
}

.enqure-now::before {
  background: linear-gradient(to right, #ffffff00 0%, #ffffff30 50%, #ffffff00 100%);
}

.requirements .requirements-btn {
  text-align: center;
  margin-top: 35px;
}

.mainContent {
  background-image: url(../img/slider-bg.jpg);
  background-size: 100% 100%;
}

.icon img {
  max-width: 100px;
}

.btn-shine a {
  text-align: center;
}

/* .see-more.text-center {
  margin-top: 60px;
} */
.btn-shine {
  border: 2px solid;
  padding: 10px;
  color: #d8b372;
  background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 30px;
  text-decoration: none;
  white-space: nowrap;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
.blog .blog-box {
  background-color: #fff;
  height: 100%;
}

.blog .blog-box h4 {
  color: #d8b372;
}

.blog .blog-box p {
  color: #000;
}

.blog .blog-box .blog-contain {
  padding: 20px;
}

.blog .blog-box .blog-contain span {
  font-size: 14px;
  font-family: "Jost-Regular";
  color: #000;
  padding: 20px 0px;
}

.blog .blog-contain .blog-btn p {
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid #d8b372;
  width: fit-content;
  background-color: #000;
}

.blog .blog-contain .blog-btn p {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# counter Section
--------------------------------------------------------------*/
.counter h3,
.counter span {
  font-size: 30px;
}

.counter p {
  font-size: 20px;
  color: #ddd;
  margin: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* .employee {
  width:100%;
  background-color:black;
  margin:10px auto;
  display:block;
  overflow:hidden;
  height:400px;
  border-radius:10px;
  -webkit-box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
}
.employee:hover > .employee-image {
  margin-top:-100px;
}
.employee-image {
  width:100%;
  transition:0.5s;
}
.employee-image img {
  height:100%;
}
.employee-name {
  color:#d8b372;
  font-weight:bold;
  padding:5px;
}
.employee-name h1 {
  font-size:30px;
}
.employee-name span {
  font-size:20px;
  color: #fff;
  padding:0px;
}
.employee-social-link ul li {
  position:relative;
  bottom:-120px;
}
.employee-social-link ul{
  text-align:center;
  list-style:none;
}
.employee-social-link ul li {
  display:inline-block;
  margin:7px;
  background-color:#000;
  padding:10px;
  border-radius:50%;
  line-height:0.1;
  margin-left:-5px;
}
.employee-social-link i {
  font-size:15px;
  color:#fff;
  animation-name:rotate-icon;
}

.employee-social-link ul li:nth-child(1) {
  transition:1.0s;
}
.employee-social-link ul li:nth-child(2) {
  transition:1.3s;
}
.employee-social-link ul li:nth-child(3) {
  transition:1.6s;
}
.employee-social-link ul li:nth-child(4) {
  transition:1.9s;
}
.employee-social-link ul li:nth-child(5) {
  transition:2.2s;
}
.employee:hover > .employee-details .employee-social-link ul li{
  bottom:250px;
} */

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* 
.about-video {
  height: calc(100vh - 100px);
} */

.about-content {
  color: #d8b372
}

/* .about-content img ,
.Flight-plans img,
.Flight-plans-two img{
  color: #EEE;
  padding-top: 30px;
  font-family: 'Coiny', cursive;
  text-align: center;
  font-size: 70px;
-webkit-animation: bounce 2s ease infinite alternate;
}

@-webkit-keyframes bounce {
  0% {
      text-shadow:
                  0 5px 0 #ccc,
                  0 2px 3px rgba(0, 0, 0, 1);  
  }
  100% {
    transform:translateY(-20px);
    text-shadow:  0 50px 0 #000,
                  0 0px 20px rgba(0, 0, 0, .8);
  }
} */
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# .single-slide
--------------------------------------------------------------*/





/* .cascade-slider_container {
  position: relative;
  max-width: 1000px;
  height: 40vh;
  margin: 0 auto;
}
.cascade-slider_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.3);
  transition: all 1s ease;
  opacity: 0;
  z-index: -1;
}
.cascade-slider_item h3{
  font-size: 30px;
  color: #d8b372;
  margin: 20px 0px 10px;
}
.cascade-slider_item a {
  color: #d8b372;
  font-size: 20px;
}
.cascade-slider_item a:hover {
  color: #fff;
}
.cascade-slider_item i.fa {
  margin-left: 6px;
}
.cascade-slider_item.next {
  left: 50%;
  transform: translateY(-50%) translateX(-120%) scale(0.6);
  opacity: 1;
  z-index: 4 !important;
}
.cascade-slider_item.prev {
  left: 50%;
  transform: translateY(-50%) translateX(20%) scale(0.6);
  opacity: 1;
  z-index: 2 !important;
}
.cascade-slider_item.now {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
}
.cascade-slider_arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 5;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 30px;
}
.cascade-slider_arrow-left {
  left: -10%;
}
.cascade-slider_arrow-right {
  right: -10%;
}
.cascade-slider_nav {
  position: absolute;
  bottom: -120px;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.cascade-slider_dot {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 1em;
  background: #ddd;
  list-style: none;
  cursor: pointer;
}
.cascade-slider_dot:hover {
  background: #555;
}
.cascade-slider_dot.cur {
  background: #555;
}
.cascade-slider_slides img {
  max-width: 150px;
  border-radius: 35px;
}
.cascade-slider_item:not(.now) img {
  filter: grayscale(0.95);
}
.cascade-slider_arrow img {
  width: 25px;
}
@media screen and (min-width: 414px) {
  .cascade-slider_container {
    height: 50vh;
  }
  .cascade-slider_slides img {
    max-width: 200px;
  }
}
@media screen and (min-width: 576px) {
  .cascade-slider_container {
    height: 60vh;
  }
  .cascade-slider_slides img {
    max-width: 270px;
  }
}
@media screen and (min-width: 768px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-125%) scale(0.6);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(25%) scale(0.6);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_slides img {
    max-width: 250px;
  }
}
@media screen and (min-width: 991px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-115%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(15%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.next2 {
    left: 50%;
    transform: translateY(-50%) translateX(-150%) scale(0.37);
    opacity: 1;
    z-index: 1 !important;
  }
  .cascade-slider_item.prev2 {
    left: 50%;
    transform: translateY(-50%) translateX(50%) scale(0.37);
    opacity: 1;
    z-index: 2 !important;
  }
  .cascade-slider_slides img {
    max-width: 300px;
  }
  .cascade-slider_container {
    height: 67vh;
  }
}
@media screen and (min-width: 1100px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-130%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(30%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.next2 {
    left: 50%;
    transform: translateY(-50%) translateX(-180%) scale(0.37);
    opacity: 1;
    z-index: 1 !important;
  }
  .cascade-slider_item.prev2 {
    left: 50%;
    transform: translateY(-50%) translateX(80%) scale(0.37);
    opacity: 1;
    z-index: 2 !important;
  }
  .cascade-slider_slides img {
    max-width: 350px;
  }
}

 */




/* .single-slide {
  margin: 15px;
}
.slider-demo-multislide h2{
  text-align: center;
}
.slide-content-box h3{
  font-size: 30px;
  margin: 20px 0px;
}
.slide-content-box a {
  color: #d8b372;
  font-size: 20px;
}
.slide-content-box a:hover {
  color: #fff;
}
.single-slide i.fa {
  margin-left: 6px;
}

.slide-list .slick-arrow {
  position: absolute;
  bottom: 0;
}
.slider-demo-multislide img.right.slick-arrow {
  position: absolute;
  bottom: 0;
  right: 45%;
  background-color: #d8b372;
  border-radius: 50%;
}
.slider-demo-multislide img.left.slick-arrow {
  position: absolute;
  bottom: 0;
  left: 45%;
  z-index: 1;
  background-color: #d8b372;
  border-radius: 50%;
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #cfab6e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 */






.wwww {
  overflow-x: hidden;
  font-family: sans-serif;
  padding: 70px;
}

.wwww a {
  color: #cfab6e;
  font-size: 18px;
}

.wwww h3 {
  color: #cfab6e;
  font-size: 30px;
  margin-top: 20px;
}

.wwww i.fa {
  margin-left: 6px;
  font-size: 18px;
}

.card-container {
  display: flex;
  padding: 2rem 1rem;
}

.card-container .cardww {
  flex: 1;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.2);
}

.cardww h2 {
  font-size: 22px;
}

.card-container .cardww:not(:first-child) {
  margin-left: -10rem;
}

.cardww img {
  padding: 0px;
  width: 70%;
  display: block;
  margin: 0 auto;
}

.card-container .cardww:hover,
.card-container .cardww:focus {
  transform: translateY(-1rem);
  outline: none;
}

.card-container .cardww:hover~.cardww,
.card-container .cardww:focus~.cardww {
  transform: translateX(11rem);
}

@media (max-width: 767px) {
  #demo {
    margin-top: 0px;
  }

  .card-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0rem 1rem 2rem;
  }

  .card-container .cardww {
    flex: 1 1 100%;
    max-width: 260px;
  }

  .card-container .cardww:not(:first-child) {
    margin-left: 0rem;
    margin-top: 2rem;
  }

  .card-container .cardww:hover,
  .card-container .cardww:focus {
    transform: translateX(0rem);
  }

  .card-container .cardww:hover~.cardww,
  .card-container .cardww:focus~.cardww {
    transform: translateY(0rem);
  }

  .cardww img {
    padding: 5px;
  }
}





/* 

.slider-demo-multislide {
  background-image: url(../images/26.png);
  background-repeat: no-repeat;
  background-position: right;
}

.single-slide {
  margin: 15px;
  justify-content: center;
  padding: 0px 20px;
  align-items: center;
  display: flex !important;
  background-color: #fff;
  min-height: 203px;
  box-shadow: 0 3px 20px rgb(0 0 0 / 8%), 0 3px 20px rgb(0 0 0 / 8%);
  border-radius: 20px;
}

.slider-demo-multislide p {
  font-family: 'SourceSansPro-Regular';
  font-size: 20px;
}

.slider-demo-multislide h2 {
  font-size: 50px;
  color: #2a5743;
  padding-bottom: 20px;
  text-align: center;
}

.slide-list .slick-list {
  padding-bottom: 70px;
}

img.left.slick-arrow {
  position: absolute;
  bottom: 0%;
  left: 45%;
  z-index: 1;
}

img.right.slick-arrow {
  position: absolute;
  bottom: 0%;
  right: 45%;
}

.slide-list .slick-next:before {
  content: "";
  position: absolute;
}

.slide-list .slick-next {
  right: 40%;
  transform: translate(-45%, -50%);
}

.slide-list .slick-prev {
  left: 40%;
  z-index: 9;
  transform: translate(-45%, -50%);
}

.slick-prev:before {
  content: '';
}

.slick-prev:before,
.slick-next:before {
  color: #000;
} */

/*--------------------------------------------------------------
# contact-call
--------------------------------------------------------------*/
.contact-call {
  padding: 100px 0px;
  text-align: center;
}

.contact-call h3 {
  font-size: 60px;
  color: #fff;
}

.contact-call h4 {
  font-size: 50px;
  color: #d8b372;
}

.contact-call h4:hover {
  color: #fff;
}

.address-detail p {
  text-align: left;
}

.form-control::placeholder {
  color: #fff;
  opacity: 1;
}

.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: unset;
  outline: 0;
}

.form-control:focus {
  box-shadow: 0px 0px 10px 1px #d8b372;
}

.detail-form {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #d8b372 !important;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute;
  right: 17px;
  z-index: 9;
  top: 10%;
}

/*--------------------------------------------------------------
# contact-way
--------------------------------------------------------------*/
.contact-way {
  padding: 100px 0px
}

.contact-way .address-icon img {
  max-width: 43%;
}

.contact-way h3,
.contact-way h3 a {
  font-size: 35px;
  color: #d8b372;
}

.contact-way p,
.contact-way p a {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.contact-way .map {
  padding: 0px 30px;
}

/*--------------------------------------------------------------
# contact-form
--------------------------------------------------------------*/
.contact-form h2 {
  line-height: 1.2;
  text-align: justify;
}

.contact-form .talk-us p {
  font-size: 20px;
  letter-spacing: 3px;
}

.contact-form input#name {
  width: 47%;
  font-size: 20px;
}

.contact-form input#name:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
}

.contact-form textarea:focus {
  box-shadow: 0px 0px 10px 1px #d8b372;
}

.contact-form input,
.contact-form textarea {
  padding: 7px 20px;
  border-radius: 20px;
  margin: 20px 0px;
  border: transparent;
  background-color: #000;
  box-shadow: 0px 0px 10px 1px #d8b372;
  width: 100%;
  color: #fff;
}

.contact-form .textarea {
  width: 90%;
  margin: 0 auto;
  font-size: 20px;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  transition: ease-in-out 0.5s;
  padding: 10px 40px;
  border-radius: 20px;
  border: 2px solid #d8b372;
}

.contact-form button:hover {
  color: #d8b372;
  background-color: #fff;
  transition: ease-in-out 0.5s;
}

.contact-form .send-btn {
  display: flex;
  justify-content: center;
  margin: 50px 0px;
}

/*--------------------------------------------------------------
# Gallary
--------------------------------------------------------------*/
.gallary-image {
  margin: 15px 0;
  box-shadow: 0px 0px 10px 1px #d8b372;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

.gallary-image:hover {
  transform: scale(1.1) !important;
  transition: all .5s ease-in-out;
}

.gallary-image img {
  border-radius: 5px;
}

/*--------------------------------------------------------------
# fleet
--------------------------------------------------------------*/
.fleet .fleet-bg {
  box-shadow: 0px 0px 10px 1px #d8b372;
  padding: 30px;
  margin: 40px 0px;
  border-radius: 10px;
}

.fleet .fleet-contain h4 {
  color: #d8b372;
}

.plane-animation img {
  max-width: 600px;
  display: flex;
  margin: 0 auto;
}

.plane-animation {
  border-bottom: 1px solid #d8b372;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

.footer-logo {
  width: 20%;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .social-icon {
  display: flex;
  margin: 20px 0px;
}

#footer .social-icon .fa {
  color: #d8b372;
  font-size: 18px;
  padding: 0 10px;
}

#footer .social-icon .fa:hover {
  color: #fff;
  /* font-size: 20px; */
}

#footer .footer-info {
  margin: 20px 0px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 30px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  white-space: nowrap;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #d8b372;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

.single-logo img {
  vertical-align: top;
  aspect-ratio: 3/2;
  border: 5px solid #cab372;
}

.single-logo {
  padding: 20px;
}

.wrapper {
  position: realtive;
}

.fas.fa-envelope {
  color: #fff;
  font-size: 2rem;
  background: #333;
  padding: 1rem;
  border-radius: 100%;
  margin: 0 0 1rem 0;
}

.card-content {
  max-width: 55rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  padding: 2rem 0.5rem;
  box-shadow: 1px 1px 2rem rgba(0, 0, 0, .3);
  text-align: center;
}

.card-content h1 {
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.card-content p {
  font-size: .8rem;
  margin: 0 0 2rem 0;
}

input {
  padding: .8rem 1rem;
  width: 40%;
  border-radius: 5rem;
  outline: none;
  /* border: .1rem solid #d1d1d1; */
  font-size: .7rem;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 0px 10px 1px #d8b372;
}

::placeholder {
  color: #d1d1d1;
}

.subscribe-btn {
  padding: 0.8rem 2rem;
  border-radius: 0;
  border: 2px solid #d8b372;
  color: #fff;
  font-size: .7rem;
  /* border: none; */
  outline: none;
  cursor: pointer;
  background-color: #000;
  margin-left: 10px;
}

#footer .copyright {
  text-align: center;
}

@media (max-width: 768px) {
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}





.button-packages {
  background: #e9c85e;
  /* height:120px;
  width:30px; */
  top: 80%;
  right: 0px;
  padding: 10px;
  z-index: 1000000;
  position: fixed;
}

.vertical-text {
  font-family: verdana, sans-serif;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: iconBounce 2s linear 0s infinite;
  display: flex;
  color: #ffffff;
}


.button-packages.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}










/* ── HERO BANNER ── */
.hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a0a0a 0%, #1a130a 50%, #0a0a0a 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.skylandaviation.in/wp-content/uploads/2023/08/Service-Banner.jpg') center/cover no-repeat;
  opacity: .35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, .3) 60%, rgba(10, 10, 10, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: .9rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-top: 16px;
}

.breadcrumb-wrap {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 3;
}

.breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--gold-dim);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .08em;
}

.breadcrumb-item.active {
  color: var(--text-muted);
  font-size: .8rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--gold-dim);
}

/* ── GOLD DIVIDER ── */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
}

/* ── LAYOUT ── */
.page-wrap {
  padding: 80px 0 100px;
}

.sidebar-col {
  position: sticky;
}

/* ── SERVICE NAV ── */
.service-nav-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 2px;
  overflow: hidden;
}

.service-nav-title {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  padding: 18px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
}

.service-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.service-nav-list li:last-child {
  border-bottom: none;
}

.service-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .06em;
  transition: all .25s;
  position: relative;
}

.service-nav-list a i {
  font-size: .8rem;
  color: var(--gold-dim);
  transition: color .25s;
}

.service-nav-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .25s;
}

.service-nav-list a:hover,
.service-nav-list a.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, .06);
}

.service-nav-list a:hover i,
.service-nav-list a.active i {
  color: var(--gold);
}

.service-nav-list a:hover::before,
.service-nav-list a.active::before {
  transform: scaleY(1);
}

/* ── ENQUIRY CARD ── */
.enquiry-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 2px;
  padding: 30px 26px;
  margin-top: 24px;
}

.enquiry-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.enquiry-card p {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.enquiry-card .form-control,
.enquiry-card .form-select {
  background: var(--dark-4);
  border: 1px solid rgba(201, 168, 76, .15);
  color: var(--text);
  border-radius: 2px;
  font-size: .84rem;
  padding: 10px 14px;
  font-family: 'Jost', sans-serif;
  transition: border-color .25s;
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
  background: var(--dark-4);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
  color: var(--text);
}

.enquiry-card .form-control::placeholder {
  color: var(--text-muted);
}

.enquiry-card .form-select option {
  background: var(--dark-4);
}

/* ── MAIN CONTENT ── */
.service-main {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 2px;
  overflow: hidden;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.service-img-wrap:hover img {
  transform: scale(1.04);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark-2) 100%);
}

.service-img-tag {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-img-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.service-body {
  padding: 44px 40px 50px;
}

.service-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.15;
}

.service-body h2 span {
  color: var(--gold-light);
  font-style: italic;
}

.service-sub-head {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

.service-body p {
  font-size: .95rem;
  line-height: 1.85;
  color: #a09a93;
  margin-bottom: 20px;
}

/* ── FEATURE LIST ── */
.feature-list {
  margin: 36px 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  background: rgba(201, 168, 76, .05);
}

.feature-text h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: .86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 2px;
  overflow: hidden;
  margin: 40px 0;
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, .1);
  background: rgba(201, 168, 76, .03);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── TABS ── */
.tab-custom .nav-link {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 0;
  transition: all .25s;
}

.tab-custom .nav-link:hover {
  color: var(--gold);
}

.tab-custom .nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-custom {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 28px;
}

.tab-content-body {
  font-size: .93rem;
  line-height: 1.85;
  color: #9d9790;
}

.tab-content-body ul {
  padding-left: 0;
  list-style: none;
}

.tab-content-body ul li {
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tab-content-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ── FLEET STRIP ── */
.fleet-section {
  padding: 56px 0;
  background: var(--dark-3);
}

.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 40px;
}

.aircraft-card {
  background: var(--dark-4);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: pointer;
}

.aircraft-card:hover {
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-6px);
}

.aircraft-card-img {
  height: 180px;
  overflow: hidden;
}

.aircraft-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.aircraft-card:hover .aircraft-card-img img {
  transform: scale(1.07);
}

.aircraft-card-body {
  padding: 20px;
}

.aircraft-card-body h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.aircraft-card-body p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

.aircraft-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, .12);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ── PROCESS STEPS ── */
.process-section {
  padding: 80px 0;
}

.step-card {
  text-align: center;
  padding: 10px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .12);
  line-height: 1;
  margin-bottom: 10px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.step-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: .83rem;
  color: var(--text-muted);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #111005 0%, #1c1500 50%, #0e0e0e 100%);
  border-top: 1px solid rgba(201, 168, 76, .18);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, .07), transparent);
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band p {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 32px;
}

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 1px;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, .3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 34px;
  border: 1px solid var(--gold-dim);
  border-radius: 1px;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: rgba(201, 168, 76, .1);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(201, 168, 76, .12);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: #9d9790;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .1em;
}


.fleet-img img{
	border-radius:12px;
}