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

/* Lenis Required CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

img {
  width: auto;
  max-width: 100%;
}

/* Header */
.site-title a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Navigation */
.main-navigation {
  background: #444;
  padding: 0.5rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.main-navigation a {
  color: white;
  text-decoration: none;
}

/* Content Area */
.site-content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border: 1px solid #eaeaea;
}

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

p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

/* Footer */
.site-footer {
  background: #1d231f;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Buttons */
button,
input[type="submit"],
a.button {
  background: #0073aa;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

button:hover,
input[type="submit"]:hover,
a.button:hover {
  background: #005177;
}

.btn-primary {
  color: #fff;
  background: #2368ab;
  border: 1px solid #2368ab;
  border-radius: 10px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  padding: 17px 40px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f0cd80;
  color: #000;
  border: 1px solid #f0cd80;
  transform: scale(1.05);
}

.outline-btn {
  color: #fff;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 10px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  padding: 17px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background: #f0cd80;
  color: #000;
  border: 1px solid #f0cd80;
  transform: scale(1.05);
}

h2 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 3vw, 68px);
  line-height: 1.2;
  /*   text-align: center; */
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* General Style Start Here */
@media (min-width: 1440px) {
  .container-fluid {
    width: 100%;
    padding: 0 185px;
  }
}

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

.container {
  max-width: 1280px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

/* Menu Style Start Here */
.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
}

body.fixed {
  overflow: hidden;
}

.menu-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
  cursor: pointer;
}

.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1863ad;
  color: white;
  display: none;
  flex-direction: column;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fullscreen-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-nav.closing {
  opacity: 0;
  transform: translateY(30px);
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.nav-header .logo img {
  height: 40px;
}

.menu-close {
  font-size: 30px;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-size: 28px;
  font-weight: bold;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

/* Header Gsap */
:root {
  --clr-bg: #e5e3dc;
  --clr-overlay-bg: #141414;
  --clr-link: #e5e3dc;
}

#toggle-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em;
  z-index: 2;
}

.btn-outline {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid var(--clr-overlay-bg);
}

.btn-outline-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 4s linear infinite;
}

.btn-outline-2 {
  border-radius: 53% 47% 43% 58% / 51% 39% 61% 49%;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

#hamburger {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hamburger .line-1 {
  position: relative;
  width: 20px;
  transform: translate(14px, -2.5px);
  height: 1.25px;
  background: var(--clr-overlay-bg);
  transition: transform 0.25s;
}

#hamburger .line-2 {
  position: relative;
  width: 24px;
  height: 1.25px;
  right: 0;
  transform: translate(-6px, 2.5px);
  background: var(--clr-overlay-bg);
  transition: transform 0.25s;
}

#hamburger.active .line-1 {
  left: 12px;
  width: 24px;
  transform: rotate(45deg);
}

#hamburger.active .line-2 {
  right: 12px;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  margin-inline: 2rem;
  display: flex;
}

.menu>div {
  height: 100%;
  display: flex;
}

.menu a {
  position: relative;
  top: 100vh;
  line-height: 50%;
  text-decoration: none;
  color: var(--clr-link);
}

.menu a span {
  font-size: 20px;
  margin-right: 2em;
}

.menu-item {
  position: relative;
}

.meu-container {
  width: 70%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.primary-menu {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.primary-menu .menu-container .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.primary-menu a {
  text-transform: uppercase;
  font-size: 125px;
  font-weight: 500;
}

.secondary-menu {
  position: relative;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8em;
  flex-direction: column;
}

.secondary-menu .menu-item a {
  font-family: "Instrument Sans", sans-serif;
  font-size: 36px;
}

.secondary-menu .menu-container .wrapper:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Header Gsap */
header.site-header .container-fluid {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 99;
}

/* Home Hero Section */
.hero-section {
  position: relative;
  height: 87vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.hero-slider,
.hero-slide {
  position: relative;
  height: 87vh;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.4;
  inset: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.hero-slide.slick-current::before {
  opacity: 0.5;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.slick-current .video-background {
  opacity: 1;
}

.hero-slide:not(.slick-current) .video-background {
  opacity: 0;
}

.hero-section .content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
}

.hero-section .content h2 {
  font-family: "Prompt", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
}

.hero-section .cta-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.send-icon {
  position: relative;
  padding-right: 60px;
}

.send-icon::before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2025/06/share.png);
  width: 14px;
  height: 14px;
  background-size: contain;
  right: 15px;
  top: 36%;
  transition: transform 0.3s ease;
}

.btn.send-icon:hover::before {
  transform: translate(5px, -5px);
  background: url(/wp-content/uploads/2025/06/share-nb.png);
}

.hero-section .btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.hero-slider .slick-dots {
  bottom: 25px;
  z-index: 10;
}

.hero-slider .slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
}

.hero-slider .slick-prev {
  left: 25px;
}

.hero-slider .slick-next {
  right: 25px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  font-size: 40px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.hero-slider .slick-prev:hover:before,
.hero-slider .slick-next:hover:before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-slider,
  .hero-slide {
    height: 70vh;
  }

  .hero-section .content {
    gap: 20px;
  }

  .hero-section .content h2 {
    font-size: clamp(28px, 4vw, 48px);
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 40px;
    height: 40px;
  }

  .hero-slider .slick-prev:before,
  .hero-slider .slick-next:before {
    font-size: 30px;
  }
}

/* Home Service card Section start here */
.hm-service {
  padding: 80px 0;
  background: url(/wp-content/uploads/2025/06/world-map.png) #fff;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hm-service .sec-heading {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.sec-heading h2 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
  text-align: center;
  color: #1c231f;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 30px 0;
  max-width: 1200px;
  margin: auto;
}

.serv-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 450px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.serv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.serv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(196, 196, 196, 0) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      #000000 100%);
  z-index: 1;
  top: 50%;
  transition: top 0.6s ease, opacity 0.6s ease;
}

.serv-card:hover::before {
  top: 0;
  opacity: 0.9;
}

.serv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.serv-card:hover img {
  transform: scale(1.15);
}

.serv-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 30px;
  z-index: 2;
  color: #ffffff;
  text-decoration: none;
}

.serv-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serv-card h3 {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
  color: #fff;
}

.serv-card p {
  margin: 10px 0 0;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.88;
}

.serv-card .arrow {
  font-size: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: right;
}

.serv-card:hover .arrow {
  transform: translateX(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hm-service {
    padding: 60px 0;
  }

  .card-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .serv-card {
    height: 400px;
  }
}

/* Home Map Section Start here */
.home-map {
  min-height: 638px;
}

.interactive-map {
  position: relative;
  width: 100%;
  margin: auto;
}

.map-bg {
  width: 100%;
  height: auto;
  display: block;
}

.map-pointer {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ff5722;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s;
}

.map-pointer:hover {
  transform: scale(1.3);
}

.map-popup {
  position: absolute;
  display: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 250px;
  z-index: 10;
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
}

.popup-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.popup-description {
  font-size: 14px;
  margin: 5px 0 0;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 16px;
  cursor: pointer;
  color: #333;
}

/* Home Flight School Section start here */
.row {
  justify-content: space-between;
  display: flex;
}

.col-50 {
  min-width: 50%;
  width: 100%;
  max-width: 50%;
}

.hms-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hms-content h2 {
  color: #fff;
  text-align: left;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
}

.hms-content h4 {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.2;
  text-align: left;
  color: #fff;
}

.hms-content .hms-text {
  padding-bottom: 10px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.hms-list-icon {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hms-list-icon li {
  padding-left: 30px;
  background: url(/wp-content/uploads/2025/06/Symbol.png);
  background-size: 22px;
  background-position: left center;
  background-repeat: no-repeat;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  display: flex;
  gap: 5px;
}

.hms-list-icon li a {
  color: #ecc871;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hms-list-icon li a:hover {
  color: #2368ab;
  transform: translateX(5px);
}

.hm-school {
  background: #1c1d23;
  padding: 80px 0 110px 0;
}

.image-section {
  position: relative;
  width: fit-content;
  margin: 0 auto 0 0;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  max-width: 460px;
}

.overlay-image {
  position: absolute;
  bottom: -40px;
  right: -56px;
  width: 260px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-image {
    width: 90vw;
  }

  .overlay-image {
    width: 40vw;
    bottom: -20px;
    right: -20px;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .col-50 {
    min-width: 100%;
    max-width: 100%;
  }

  .hms-content h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .hms-content h4 {
    font-size: clamp(18px, 4vw, 22px);
  }

  .hms-content .hms-text {
    font-size: 14px;
  }

  .hms-list-icon li {
    font-size: 16px;
    padding-left: 28px;
    background-size: 20px;
  }
}

/* Home Planning Made Easy Section Start here */
.hm-plan {
  padding: 90px 0;
  background: #fff;
}

.col-60 {
  max-width: 58%;
  width: 100%;
  min-width: 58%;
}

.col-40 {
  max-width: 42%;
  width: 100%;
  min-width: 42%;
}

.hm-plan .content-sec .hms-content {
  max-width: 650px;
  width: 100%;
}

.hm-plan .img-sec {
  max-width: 500px;
  margin-left: auto;
}

.sub-heading {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1;
  color: #2368ab;
}

.hm-plan h2 {
  color: #1c231f;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
}

.hm-plan .content-text {
  padding: 20px 0 10px 0;
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
  color: #484848;
}

.content-btn {
  padding: 5px 20px;
  background: #2368ab;
  font-family: "Prompt", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  border-radius: 20px;
  color: #fff;
  width: fit-content;
  transition: background 0.3s ease, transform 0.3s ease;
}

.content-btn:hover {
  background: #1b4e8a;
  transform: scale(1.05);
}

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

.plan-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hm-plan {
    padding: 60px 0;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .col-60,
  .col-40 {
    min-width: 100%;
    max-width: 100%;
  }

  .hm-plan .img-sec {
    max-width: 100%;
    margin: 0 auto;
  }

  .hm-plan h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .sub-heading,
  .hm-plan .content-text,
  .content-btn {
    font-size: clamp(14px, 3vw, 16px);
  }
}

/* Aircraft Maintenance Organization Section Start Here */
.hm-maintenance {
  padding: 90px 0;
  background: #f4f8ff;
}

.hm-maintenance .sec-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.hm-maintenance .sec-heading .sub-heading {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1;
  color: #2368ab;
}

.hm-maintenance .sec-heading h2 {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
  color: #1c231f;
}

.hm-maintenance .sec-heading p {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
  color: #484848;
}

.hm-maintenance .hms-content h4 {
  color: #2368ab;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  text-align: left;
}

.hm-maintenance .hms-content {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
}

.hm-maintenance .hms-content .content-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hm-maintenance .hms-content .btn-primary {
  padding: 17px 24px;
  background: #2368ab;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Prompt", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  width: fit-content;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hm-maintenance .hms-content .btn-primary:hover {
  background: #1b4e8a;
  transform: scale(1.05);
}

.hm-maintenance .hms-content .content-text .list-content b {
  font-weight: 500;
  color: #484848;
}

.hm-maintenance .hms-content .content-text .list-content,
.hm-maintenance .hms-content .content-text .list-content li,
.hm-maintenance .hms-content .content-text .list-content p {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
  color: #484848;
}

.hm-maintenance .hms-content .content-text .list-content ul {
  list-style-position: inside;
  float: left;
  max-width: 50%;
  margin-top: 5px;
}

.hm-maintenance .hms-content .content-text .list-content ul+ul {
  padding-left: 30px;
  float: right;
}

.hm-maintenance .col-50 {
  min-width: calc((100% / 2) - 20px);
  width: 100%;
  max-width: calc((100% / 2) - 20px);
}

.hm-maintenance .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.left-content .hms-content .btn {
  width: fit-content;
  margin-top: 20px;
}

.hm-maintenance .left-content .hms-content {
  padding-right: 20px;
  padding-left: 0;
}

.hm-maintenance .left-content .image-section {
  margin: 0 0 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hm-maintenance {
    padding: 60px 0;
  }

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .col-50 {
    min-width: 100%;
    max-width: 100%;
  }

  .hm-maintenance .left-content .image-section {
    margin: 0 auto;
  }

  .hm-maintenance .left-content .hms-content {
    padding-right: 0;
  }

  .hm-maintenance .hms-content h4 {
    font-size: clamp(18px, 3vw, 22px);
  }

  .hm-maintenance .hms-content .content-text .list-content,
  .hm-maintenance .hms-content .content-text .list-content li,
  .hm-maintenance .hms-content .content-text .list-content p {
    font-size: clamp(14px, 3vw, 16px);
  }

  .hm-maintenance .hms-content .content-text .list-content ul {
    max-width: 100%;
    float: none;
  }

  .hm-maintenance .hms-content .content-text .list-content ul+ul {
    padding-left: 0;
    float: none;
  }
}

/* hm-book-section Start Here */
.hm-book-section {
  padding: 150px 0;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}

.book-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.book-content h2 {
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.2;
  max-width: 800px;
}

.book-content .btn {
  width: fit-content;
  margin: 0 auto;
  padding: 11px 40px 11px 20px;
  background: #2368ab;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Prompt", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.book-content .btn:hover {
  background: #1b4e8a;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hm-book-section {
    padding: 100px 0;
  }

  .book-content h2 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .book-content .btn {
    font-size: clamp(14px, 3vw, 16px);
    padding: 12px 20px;
  }
}

/* Footer Style start here */
.f-gnt {
  padding: 40px 0;
}

.gnt-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.gnt-btn {
  padding: 11px 20px;
  color: #2368ab;
  background: #2368ab4d;
  border-radius: 10px;
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  width: fit-content;
  transition: all 0.4s ease;
}

.gnt-btn:hover {
  color: #fff;
  background: #2368ab;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(35, 104, 171, 0.7);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  border: 1px solid #d9d9d91a;
  border-left: 0;
  border-right: 0;
  padding: 40px 0;
  gap: 20px;
}

.footer-left {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
  max-width: 300px;
  text-align: left;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #2368ab;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.4s ease;
  position: relative;
}

.icon-circle:hover {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 0 15px rgba(35, 104, 171, 0.7);
}

.footer-text strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
}

.footer-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Prompt", sans-serif;
  color: #e1e1e1;
}

.footer-text a {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Prompt", sans-serif;
  color: #e1e1e1;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-text a:hover {
  color: #4da8ff;
  transform: translateX(5px);
}

.footer-right {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background-color: #3e3e3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(77, 168, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.social-link:hover::before {
  width: 100px;
  height: 100px;
}

.social-link:hover {
  background-color: #4da8ff;
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 0 15px rgba(77, 168, 255, 0.6);
}

.footer-links {
  padding: 60px 0;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  max-width: 265px;
}

.footer-column:last-child {
  max-width: 210px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1;
  transition: all 0.3s ease;
}

.footer-column h4:hover {
  color: #4da8ff;
  transform: scale(1.05);
}

.footer-column p,
.footer-column ul li {
  font-size: 16px;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(10px);
  color: #4da8ff;
}

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

.footer-column a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a:hover {
  color: #4da8ff;
  transform: translateX(5px);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #d9d9d91a;
}

.footer-bottom-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  color: #fff;
  font-size: 14px;
}

.footer-links-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #4da8ff;
  transform: translateY(-3px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

.hm-service .card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* Adjust spacing between cards */
  justify-content: center;
}

.serv-card {
  position: relative;
  overflow: hidden;
  /* Prevent content from spilling during animation */
  width: 300px;
  /* Adjust as needed */
}

/* About Us CSS Start */
.about-overview {
  background: linear-gradient(to bottom, #f9f9f9, #e0e7ff);
  padding: 11rem 1rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/uploads/2025/06/about_us_right.jpg") no-repeat center/cover;
  opacity: 0.1;
  z-index: 0;
}

.about-overview .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-history {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.about-history .container {
  max-width: 1200px;
  margin: 0 auto;
}

.history-card {
  background: #f8fafc;
  border-radius: 15px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: skewY(-3deg);
  transition: transform 0.3s ease;
}

.history-card:hover {
  transform: skewY(0deg);
}

.history-image {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-image:hover {
  transform: scale(1.05);
}

.btn-About {
  background-color: #1e3a8a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0.5rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-About:hover {
  background-color: #3b82f6;
  transform: translateY(-2px);
}

.blockquote {
  font-style: italic;
  color: #4b5563;
  border-left: 4px solid #1e3a8a;
  padding-left: 1rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .history-card {
    transform: skewY(0deg);
    padding: 1.5rem;
  }

  .about-overview {
    padding: 10rem 1rem 4rem;
  }
}

@media (max-width: 768px) {
  .about-overview {
    padding: 10rem 1rem;
  }

  .history-card {
    transform: skewY(0deg);
    padding: 1.25rem;
  }

  .history-image {
    width: 100%;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .about-overview {
    padding: 10rem 1rem;
  }

  .blockquote {
    padding-left: 0.75rem;
    font-size: 0.95rem;
  }

  .btn-About {
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
  }

  .btn-About {
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* About Us CSS End */

/* Fleet Section Styles */
.fleet-section {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, #f9fafb, #e5e7eb);
  text-align: center;
}

.fleet-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 3rem;
  position: relative;
}

.fleet-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #1e3a8a;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-item {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.fleet-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fleet-image {
  position: relative;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-item:hover .fleet-image img {
  transform: scale(1.05);
}

.fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 58, 138, 0.85);
  color: #ffffff;
  text-align: center;
  padding: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fleet-item:hover .fleet-overlay {
  transform: translateY(0);
}

.fleet-title {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem;
  color: #1f2937;
  background-color: #f9fafb;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .fleet-heading {
    font-size: 2.25rem;
  }

  .fleet-title {
    font-size: 1.1rem;
    padding: 0.75rem;
  }

  .fleet-image img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .fleet-grid {
    gap: 20px;
  }

  .fleet-title {
    font-size: 1rem;
  }

  .fleet-image img {
    height: 160px;
  }
}

/* Fleet CSS End */

/* Services Section */
.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f8fafc, #e0e7ff);
  color: #1f2937;
}

.services-header {
  max-width: 760px;
  margin: 4rem auto 4rem;
  text-align: center;
}

.services-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  position: relative;
}

.services-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #3b82f6;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  border-left: 6px solid #1e3a8a;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
  .services-heading {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

/* Services Section End*/
.safaris-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f9fafb, #e0e7ff);
  color: #1f2937;
  font-family: "Prompt", sans-serif;
}

/* DesertAir Section */

.safaris-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f8fafc, #e0e7ff);
  color: #1f2937;
  font-family: "Prompt", sans-serif;
}

/* Intro Section */
.safaris-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #d1d5db;
}

.intro-text {
  flex: 1 1;
}

.intro-image {
  flex: 1 1;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.safaris-heading {
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.safaris-lead {
  font-size: 1.2rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 1rem;
}

.safaris-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
}

.safari-btn {
  background-color: #1e3a8a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.safari-btn:hover {
  background-color: #3b82f6;
}

/* Highlight Section */
.safari-highlights {
  max-width: 1200px;
  margin: 0 auto;
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.highlight.reverse {
  flex-direction: row-reverse;
}

.highlight-text {
  flex: 1 1;
}

.highlight-text h2 {
  font-size: 1.8rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.highlight-text p {
  color: #374151;
  line-height: 1.6;
}

.highlight-img {
  flex: 1 1;
  text-align: center;
}

.highlight-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {

  .safaris-intro,
  .highlight {
    flex-direction: column;
    text-align: center;
  }

  .safaris-heading {
    font-size: 2rem;
  }

  .highlight-text h2 {
    font-size: 1.5rem;
  }
}

/* DesertAir Section End*/

/* === Maintenance Section Styling === */
.maintenance-section {
  padding: 6rem 1rem;
  background: #f9fafb;
  font-family: "Prompt", sans-serif;
  color: #1f2937;
}

/* Hero Section */
.maintenance-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 100%);
  padding: 5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-content {
  flex: 1 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Certification Box */
.maintenance-certification {
  text-align: center;
  margin: 4rem 0;
}

.certification-box {
  background: #1e3a8a;
  color: white;
  padding: 1rem;
  border-radius: 15px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* AMO Details */
.maintenance-amo-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.amo-block {
  background: #ffffff;
  padding: 2rem;
  flex: 1 1;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.amo-block h3 {
  color: #1e3a8a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.amo-block ul {
  list-style: disc inside;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Workshop Section */
.maintenance-workshop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #eef2ff;
  padding: 4rem 2rem;
  border-radius: 20px;
}

.workshop-content {
  flex: 1 1;
}

.workshop-content h2 {
  font-size: 1.75rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.workshop-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

.workshop-image {
  flex: 1 1;
}

.workshop-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {

  .maintenance-hero,
  .maintenance-workshop {
    flex-direction: column;
    text-align: center;
  }

  .amo-block {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* === Maintenance Section Styling ENd === */

.about-full-text {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.about-full-text .wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.about-full-text h2,
.about-full-text h3 {
  color: #2d2d2d;
  margin-bottom: 20px;
}

.about-full-text p,
.about-full-text ul {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-full-text ul {
  padding-left: 20px;
}

.about-full-text ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.gradient-text {
  background: linear-gradient(90deg, #E9BC63, #D28D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(90deg, #E9BC63, #D28D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;



  font-size: 24px !important;
  line-height: 36px !important;
}


@media (min-width: 87px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}


@media (min-width: 881px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}

@media (min-width: 1025px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}

@media (min-width: 1200px) {
  .gradient-text {
    font-size: 48px !important;
    line-height: 48px !important;
  }
}


.elementor-divider-separator {
  width: 108px;
  height: 4.5px;
  border-radius: 10px;
  background: linear-gradient(90deg, #E9BC63, #D28D2D);
  border: none;

}

.center .elementor-heading-title {
  text-align: center;
}


.gradient-text {
  background: linear-gradient(90deg, #E9BC63, #D28D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(90deg, #E9BC63, #D28D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;



  /* Mobile Portrait (default) */
  font-size: 24px !important;
  line-height: 36px !important;
}

/* Mobile Landscape (≥769px) */
@media (min-width: 87px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}


@media (min-width: 881px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}

/* Tablet Landscape (≥1025px) */
@media (min-width: 1025px) {
  .gradient-text {
    font-size: 36px !important;
    line-height: 36px !important;
  }
}

/* Desktop (≥1200px) */
@media (min-width: 1200px) {
  .gradient-text {
    font-size: 48px !important;
    line-height: 48px !important;
  }
}

.elementor-1855 .elementor-element.elementor-element-ae88f51 {
  --divider-color: none !important;
}


.heading-center .elementor-heading-title {
  text-align: center;
}

/* new css for icon list margin setting */

.check-mark-icon .elementor-icon-list-icon svg {
  margin: 0px !important;
}























/* ============================================================
   Desert Air – Scenic Tabs Widget  |  custom.css
   Scoped to .da-scenic-tabs — zero global side-effects
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
.da-scenic-tabs {
  --da-gold: #c9902a;
  --da-gold-light: #f5dfa0;
  --da-dark: #1a0e00;
  --da-dark-mid: #2b1a00;
  --da-panel-bg: rgba(201, 144, 42, 0.13);
  --da-radius: 12px;
  --da-speed: 0.36s;
  --da-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --da-gap: 24px;
  --da-border: 1.5px solid rgba(201, 144, 42, 0.3);
}

/* ── Reset ─────────────────────────────────────────────────── */
.da-scenic-tabs *,
.da-scenic-tabs *::before,
.da-scenic-tabs *::after {
  box-sizing: border-box;
}

/* ── Outer Wrapper ─────────────────────────────────────────── */
.da-scenic-tabs {
  display: flex;
  align-items: stretch;
  gap: var(--da-gap);
  width: 100%;
  position: relative;
}

.da-scenic-tabs.da-img-left {
  flex-direction: row;
}

.da-scenic-tabs.da-img-right {
  flex-direction: row-reverse;
}

/* ── Columns ───────────────────────────────────────────────── */
.da-col {
  display: flex;
  flex-direction: column;
}

.da-col-images {
  flex: 0 0 auto;
  width: 290px;
  min-width: 220px;
}

.da-col-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  /* prevent flex overflow */
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP THUMBNAIL STACK
   ═══════════════════════════════════════════════════════════ */
.da-thumbs-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.da-thumb {
  position: relative;
  flex: 1 1 0;
  cursor: pointer;
  border-radius: var(--da-radius);
  overflow: hidden;
  border: var(--da-border);
  transition:
    border-color var(--da-speed) var(--da-ease),
    box-shadow var(--da-speed) var(--da-ease),
    transform var(--da-speed) var(--da-ease);
}

.da-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.8);
  transition:
    filter var(--da-speed) var(--da-ease),
    transform var(--da-speed) var(--da-ease);
}

.da-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 0, 0.4);
  transition: opacity var(--da-speed) var(--da-ease);
}

/* ── Active thumbnail ── */
.da-thumb.is-active {
  border-color: var(--da-gold);
  box-shadow: 0 0 0 2px var(--da-gold), 0 8px 24px rgba(201, 144, 42, 0.28);
  transform: scale(1.02);
}

.da-thumb.is-active img {
  filter: brightness(1) saturate(1.1);
}

.da-thumb.is-active .da-thumb-overlay {
  opacity: 0;
}

.da-thumb:hover:not(.is-active) {
  border-color: rgba(201, 144, 42, 0.55);
  transform: scale(1.01);
}

.da-thumb:hover:not(.is-active) img {
  filter: brightness(0.8) saturate(0.9);
}

/* ── Swiper: hidden on desktop ─────────────────────────────── */
.da-swiper {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   TAB BUTTONS
   ═══════════════════════════════════════════════════════════ */
.da-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.da-tab-btn {
  flex: 1 1 0;
  min-width: 130px;
  padding: 14px 16px;
  /* FIX #1: was var(--dark) — undefined variable. Now correctly var(--da-dark) */
  background-color: var(--da-dark);
  color: var(--da-gold-light);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border: var(--da-border);
  border-radius: var(--da-radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  /* Explicit transition on properties that change */
  transition:
    background-color var(--da-speed) var(--da-ease),
    color var(--da-speed) var(--da-ease),
    border-color var(--da-speed) var(--da-ease),
    box-shadow var(--da-speed) var(--da-ease),
    transform 0.15s ease;
}

/* Shimmer hover overlay */
.da-tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 144, 42, 0.14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--da-speed) var(--da-ease);
  pointer-events: none;
}

.da-tab-btn:hover::before {
  opacity: 1;
}

.da-tab-btn:active {
  transform: scale(0.97);
}

.da-tab-btn:focus-visible {
  outline: 2px solid var(--da-gold);
  outline-offset: 3px;
}

.da-tab-btn.is-active {
  background-color: var(--da-gold);
  color: var(--da-dark);
  border-color: var(--da-gold);
  box-shadow: 0 4px 18px rgba(201, 144, 42, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   CONTENT PANELS
   FIX #2/#5: Instead of toggling display:none (which breaks
   CSS animation re-triggering), panels are always in the
   layout flow but hidden via opacity + visibility + height.
   The .is-active class makes them fully visible.
   JS re-triggers animation by removing/re-adding a class.
   ═══════════════════════════════════════════════════════════ */
.da-content-wrap {
  position: relative;
  flex: 1 1 0;
}

/* All panels stacked in the same grid cell */
.da-content-panel {
  /* Position all panels on top of each other */
  position: absolute;
  inset: 0;
  min-height: 280px;

  background-color: var(--da-panel-bg);
  border: var(--da-border);
  border-radius: var(--da-radius);
  padding: 28px 32px;
  color: var(--da-gold-light);
  line-height: 1.75;
  overflow-y: auto;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--da-speed) var(--da-ease),
    visibility var(--da-speed) var(--da-ease),
    transform var(--da-speed) var(--da-ease);
}

/* Active panel — fully visible */
.da-content-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Ensure active panel is on top */
  position: relative;
  inset: auto;
}

/* Typography inside content */
.da-content-panel strong {
  color: var(--da-gold);
  font-weight: 700;
}

.da-content-panel p {
  margin-top: 0.7em;
}

/* ═══════════════════════════════════════════════════════════
   SWIPER OVERRIDES
   ═══════════════════════════════════════════════════════════ */
.da-swiper .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--da-radius);
  display: block;
}

.da-swiper .swiper-pagination {
  position: relative;
  margin-top: 10px;
}

.da-swiper .swiper-pagination-bullet {
  background: var(--da-gold-light);
  opacity: 0.45;
  width: 8px;
  height: 8px;
}

.da-swiper .swiper-pagination-bullet-active {
  background: var(--da-gold);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .da-scenic-tabs,
  .da-scenic-tabs.da-img-left,
  .da-scenic-tabs.da-img-right {
    flex-direction: column;
  }

  .da-col-images {
    width: 100%;
    min-width: unset;
    order: 2;
  }

  .da-col-content {
    order: 1;
  }

  /* Desktop stack off, Swiper on */
  .da-thumbs-stack {
    display: none;
  }

  .da-swiper {
    display: block;
  }

  /* Peek effect: 1 full slide + partial next */
  .da-swiper .swiper-slide {
    width: 76% !important;
  }

  .da-swiper .swiper-slide img {
    height: 260px;
  }

  /* Buttons: horizontal scrollable row */
  .da-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    gap: 10px;
  }

  .da-tabs-nav::-webkit-scrollbar {
    height: 3px;
  }

  .da-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--da-gold);
    border-radius: 4px;
  }

  .da-tab-btn {
    flex: 0 0 auto;
    min-width: 190px;
    scroll-snap-align: start;
  }

  /* Content wrap: let height be natural on mobile/tablet */
  .da-content-wrap {
    min-height: 220px;
  }

  .da-content-panel {
    position: absolute;
    inset: 0;
    min-height: 220px;
  }

  .da-content-panel.is-active {
    position: relative;
    inset: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  .da-scenic-tabs {
    --da-gap: 16px;
  }

  /* First button fully visible (~85vw), second partially */
  .da-tab-btn {
    min-width: 72vw;
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .da-tab-btn:first-child {
    min-width: 82vw;
  }

  .da-swiper .swiper-slide {
    width: 88% !important;
  }

  .da-swiper .swiper-slide img {
    height: 210px;
  }

  .da-content-panel {
    padding: 18px 16px;
    font-size: 0.91rem;
  }
}

.da-content-wrap {
  position: relative;
  flex: 1 1 0;
  min-height: 280px;
  /* fallback; JS will overwrite with exact panel height */
}

/* ============================================================
   Desert Air – Scenic Tabs Widget  |  custom.css  (v2)
   Layout: [Tabs Nav + Content Panel] | [3 Stacked Images]
   Zero global side-effects — all scoped to .da-scenic-tabs
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
.da-scenic-tabs {
  --da-gold: #c9902a;
  --da-gold-light: #f5dfa0;
  --da-dark: #1a0e00;
  --da-dark-mid: #2b1a00;
  --da-panel-bg: rgba(255, 255, 255, 0.97);
  --da-radius: 14px;
  --da-speed: 0.36s;
  --da-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --da-gap: 24px;
  --da-border: 2px solid rgba(201, 144, 42, 0.35);
  --da-img-gap: 10px;
  --da-img-col-w: 220px;
}

/* ── Reset ─────────────────────────────────────────────────── */
.da-scenic-tabs *,
.da-scenic-tabs *::before,
.da-scenic-tabs *::after {
  box-sizing: border-box;
}

/* ── Outer Wrapper ─────────────────────────────────────────── */
.da-scenic-tabs {
  display: flex;
  align-items: stretch;
  gap: var(--da-gap);
  width: 100%;
  position: relative;
}

/* Image RIGHT (default per screenshot) */
.da-scenic-tabs.da-img-right {
  flex-direction: row;
  /* content left, images right */
}

/* Image LEFT */
.da-scenic-tabs.da-img-left {
  flex-direction: row-reverse;
  /* content right, images left */
}

/* ── Columns ───────────────────────────────────────────────── */
.da-col {
  display: flex;
  flex-direction: column;
}

/* ── IMAGE COLUMN ──────────────────────────────────────────── */
.da-col-images {
  flex: 0 0 var(--da-img-col-w);
  width: var(--da-img-col-w);
  min-width: 180px;
}

/* Each tab's image group — hidden unless active */
.da-tab-images {
  display: none;
  flex-direction: column;
  gap: var(--da-img-gap);
  height: 100%;
  width: 100%;
}

.da-tab-images.is-active {
  display: flex;
}

/* 3 stacked images — each takes equal vertical space */
.da-tab-images .da-static-images {
  display: flex;
  flex-direction: column;
  gap: var(--da-img-gap);
  height: 100%;
}

.da-tab-images .da-static-images .da-img-item {
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--da-radius);
  border: var(--da-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform var(--da-speed) var(--da-ease),
    box-shadow var(--da-speed) var(--da-ease),
    border-color var(--da-speed) var(--da-ease);
}

.da-tab-images .da-static-images .da-img-item:hover {
  transform: scale(1.025) translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 144, 42, 0.28);
  border-color: var(--da-gold);
}

.da-tab-images .da-static-images .da-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--da-radius) - 2px);
  transition: transform 0.5s var(--da-ease);
}

.da-tab-images .da-static-images .da-img-item:hover img {
  transform: scale(1.06);
}

/* ── CONTENT COLUMN ────────────────────────────────────────── */
.da-col-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* ── TAB BUTTONS ───────────────────────────────────────────── */
.da-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.da-tab-btn {
  flex: 1 1 0;
  min-width: 130px;
  padding: 14px 18px;
  background-color: #fff;
  color: var(--da-gold);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border: 2px solid var(--da-gold);
  border-radius: var(--da-radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  transition:
    background-color var(--da-speed) var(--da-ease),
    color var(--da-speed) var(--da-ease),
    border-color var(--da-speed) var(--da-ease),
    box-shadow var(--da-speed) var(--da-ease),
    transform 0.15s ease;
}

/* shimmer hover */
.da-tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 144, 42, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--da-speed) var(--da-ease);
  pointer-events: none;
}

.da-tab-btn:hover::before {
  opacity: 1;
}

.da-tab-btn:active {
  transform: scale(0.97);
}

.da-tab-btn:focus-visible {
  outline: 2px solid var(--da-gold);
  outline-offset: 3px;
}

/* ACTIVE state — matches screenshot: white text on gold bg */
.da-tab-btn.is-active {
  background-color: var(--da-gold);
  color: #fff;
  border-color: var(--da-gold);
  box-shadow: 0 4px 18px rgba(201, 144, 42, 0.4);
}

/* ── CONTENT PANELS ────────────────────────────────────────── */
.da-content-wrap {
  position: relative;
  flex: 1 1 0;
  min-height: 280px;
}

/* All panels stacked — hidden by default */
.da-content-panel {
  position: absolute;
  inset: 0;
  min-height: 280px;

  background-color: #fff;
  border: 2px solid rgba(201, 144, 42, 0.2);
  border-radius: var(--da-radius);
  padding: 32px 36px;
  color: #1a0e00;
  line-height: 1.75;
  overflow-y: auto;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--da-speed) var(--da-ease),
    visibility var(--da-speed) var(--da-ease),
    transform var(--da-speed) var(--da-ease);
}

/* Active panel */
.da-content-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  inset: auto;
}

/* Typography inside content — matches screenshot */
.da-content-panel strong,
.da-content-panel b {
  color: #1a0e00;
  font-weight: 700;
}

.da-content-panel p {
  margin-top: 0.75em;
}

.da-content-panel h3,
.da-content-panel h4 {
  color: var(--da-gold);
  margin-bottom: 0.5em;
}

/* Decorative gold left border accent */
.da-content-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--da-gold) 0%, rgba(201, 144, 42, 0.25) 100%);
}

/* ── HIDE old Swiper on desktop ────────────────────────────── */
.da-img-swiper {
  display: none !important;
}

/* ── Mobile Swiper (tablet ≤ 1024px) ──────────────────────── */
.da-swiper {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .da-scenic-tabs,
  .da-scenic-tabs.da-img-left,
  .da-scenic-tabs.da-img-right {
    flex-direction: column;
  }

  .da-col-images {
    width: 100%;
    flex: none;
    min-width: unset;
    order: 2;
  }

  .da-col-content {
    order: 1;
  }

  /* On tablet/mobile — show horizontal scroll of images instead of vertical */
  .da-tab-images.is-active {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .da-tab-images.is-active::-webkit-scrollbar {
    height: 3px;
  }

  .da-tab-images.is-active::-webkit-scrollbar-thumb {
    background: var(--da-gold);
    border-radius: 4px;
  }

  .da-tab-images .da-static-images {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    height: auto;
    width: 100%;
  }

  .da-tab-images .da-static-images .da-img-item {
    flex: 0 0 72vw;
    scroll-snap-align: start;
    height: 220px;
  }

  /* Buttons: horizontal scrollable row */
  .da-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .da-tabs-nav::-webkit-scrollbar {
    height: 3px;
  }

  .da-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--da-gold);
    border-radius: 4px;
  }

  .da-tab-btn {
    flex: 0 0 auto;
    min-width: 180px;
    scroll-snap-align: start;
  }

  .da-content-wrap {
    min-height: 220px;
  }

  .da-content-panel {
    position: absolute;
    inset: 0;
    min-height: 220px;
    padding: 24px 22px;
  }

  .da-content-panel.is-active {
    position: relative;
    inset: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  .da-scenic-tabs {
    --da-gap: 14px;
  }

  .da-tab-btn {
    min-width: 68vw;
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .da-tab-images .da-static-images .da-img-item {
    flex: 0 0 80vw;
    height: 190px;
  }

  .da-content-panel {
    padding: 18px 16px;
    font-size: 0.91rem;
  }

  .da-content-panel::before {
    display: none;
  }
}


.desert-air-main {
  width: 100%;
  position: relative;
}

.desert-air-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: end;
  
}

.desert-air-tabs::-webkit-scrollbar {
  display: none;
}

.desert-air-tab {
  background: #2e1b04;
  border: 1px solid #8c6320;
  color: #E9BC63;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  min-width: max-content;
  font-family: 'Liberation Sans' !important;
}

.desert-air-tab:hover {
  transform: translateY(-2px);
}

.desert-air-tab.active {
  background: linear-gradient(92.39deg, #E9BC63 38.46%, #D28D2D 100%);
  color: #2a1702;
 font-family: 'Liberation Sans' !important;	
}

.desert-air-panel {
  display: none;
  gap: 20px;
  align-items: stretch;
}

.desert-air-panel.active {
  display: flex;
}

.desert-air-main.right .desert-air-panel {
  flex-direction: row-reverse;
}

.desert-air-gallery {
  width: 31%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.desert-air-image {
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.desert-air-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 215px;
  border-radius: 16px !important;
}

.desert-air-image:hover img {
  transform: scale(1.08);
}

.desert-air-content {
  width: 69%;
  background: #E1C063;
  border-radius: 18px;
  padding: 34px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.desert-air-content h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #2a1702;
  font-family: 'Liberation Sans' !important;
}

.desert-air-meta {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.5;
  color: #2a1702;
  font-family: 'Liberation Sans' !important;
}

.desert-air-overview {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.5;
  color: #2a1702;
  flex-direction: column !important;
  gap: 30px !important;
  display:flex;
  font-family: 'Liberation Sans' !important;
  font-weight: 500;
}

.desert-air-overview p:last-child {
  margin-bottom: 0;
}

/* =========================
                   LAPTOP
                ========================== */

@media(max-width:1366px) {

  .desert-air-content h2 {
    font-size: 22px;
  }

}

/* =========================
                   TABLET
                ========================== */

@media(max-width:992px) {

  .desert-air-panel,
  .desert-air-main.right .desert-air-panel {
    flex-direction: column;
  }

  .desert-air-gallery,
  .desert-air-content {
    width: 100%;
  }

  .desert-air-gallery {
    flex-direction: row;
  }

  .desert-air-image {
    flex: 1;
    height: 220px;
  }

}

/* =========================
                   MOBILE
                ========================== */



@media(max-width:767px) {

  .desert-air-gallery {
    flex-direction: column;
  }

  
.second-tab .desert-air-content {
    width: 100% !important;
    background: #fff !important;
}

  .desert-air-content {
    padding: 24px;
  }

  .desert-air-content h2 {
    font-size: 18px;
  }

  .desert-air-meta,
  .desert-air-overview {
    font-size: 15px;
  }

  .desert-air-tab {
    padding: 12px 18px;
    font-size: 14px;
  }

  .second-tab .desert-air-tab {
    background: #2e1b0400;
    border: 1px solid #ffffff;
    padding: 20px 19px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    min-width: max-content;
}

}
button.desert-air-tab:hover {
    background: linear-gradient(92.39deg, #E9BC63 38.46%, #D28D2D 100%);
    color: #2a1702;
}

.second-tab .desert-air-content {
    width: 69%;
    background: #ffffff !important;
    border-radius: 18px;
    padding: 34px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.second-tab .desert-air-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: start;
}
.second-tab button.desert-air-tab.active {
    background: #fff !important;
    color: #E9BC63 !important;
    border: #E9BC63 !important;
}
.second-tab .desert-air-tab {
    background: #2e1b0400 !important;
    border: 1px solid #ffffff !important;
    padding: 20px 19px;
    border-radius: 10px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    min-width: max-content;
}
.second-tab button.desert-air-tab:hover {
    background: #fff !important;
    color: #e9bc63 !important;
}
.second-tab img {
    border-radius: 16px;
}

/* =========================================
   SECOND TAB ONLY REQUIRED CSS
   ========================================= */

.second-tab .desert-air-tabs {
    justify-content: start;
}

.second-tab .desert-air-tab {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.second-tab .desert-air-tab.active,
.second-tab .desert-air-tab:hover {
    background: #ffffff;
    color: #E9BC63 !important;
    border-color: #ffffff;
}

.second-tab .desert-air-content {
    background: #ffffff !important;
}

/* IMAGE POSITION CHANGE */

.second-tab .desert-air-panel {
    flex-direction: row-reverse;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media(max-width:992px){

    .second-tab .desert-air-panel{
        flex-direction: column;
    }

    .second-tab .desert-air-gallery,
    .second-tab .desert-air-content{
        width:100%;
    }

}

@media(max-width:767px){

    .second-tab .desert-air-tab{
        font-size:14px;
        padding:12px 18px;
    }

    .second-tab .desert-air-content{
        width:100% !important;
        padding:24px;
    }

}
#license_validation{
    scroll-margin-top:120px;
}
.banner-text-center h2 {
    text-align: center;
}

.text-gap  ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 767px) {
 
   .textm .elementor-heading-title.elementor-size-default {
        text-align: center !important;
    }
}
@media(max-width:991px){
  .tab-widget-ours .slick-track {
    display: flex;
    gap: 10px;
}
  }

  
  html,
body{
    overflow-x:hidden !important;
    max-width:100% !important;
}

.home{
    overflow-x:hidden !important;
}



/* =====================================================
   Desert Air — Mobile sub-sub-menu fix
   Targets BOTH nav instances Elementor renders
   ===================================================== */

@media (max-width: 1024px) {

  /* Hide Desert Aviation Academy submenu by default.
     !important needed to beat SmartMenus inline styles */
  .menu-item-8335 > .sub-menu {
    display: none !important;
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding-left: 16px !important;
    box-shadow: none !important;
    z-index: auto !important;
  }

  /* Show it when .da-open class is toggled by JS */
  .menu-item-8335.da-open > .sub-menu {
    display: block !important;
  }

  /* Visual arrow indicator on the parent link */
  .menu-item-8335 > a::after {
    content: ' \25B8';
    font-size: 11px;
    opacity: 0.55;
    margin-left: 4px;
  }

  .menu-item-8335.da-open > a::after {
    content: ' \25BE';
  }
}
.drop-cap {
    float: left;
    font-size: 80px;
    line-height: 0.8;
    margin-right: 10px;
    margin-top: 0px;
    font-family: Georgia, serif;
    font-weight: 400;
    color: #8B5E34;
}
.the-banner-text h2.elementor-heading-title {
    text-align: center;
}

.the-svg-arrow svg {
    width: 80px !important;
}


.the-svg-arrow svg:hover {
    color: #fff !important;
    fill: #fff !important;
}
.the-svg-arrow .elementor-button:hover svg path,
.the-svg-arrow:hover .elementor-button svg path {
    fill: #ffffff !important;
}
.the-svg-arrow .elementor-button-icon svg {
    width: 80px !important;
}

.elementor-element.the-svg-arrow .elementor-button .elementor-button-icon svg {
    width: 80px !important;
    max-width: unset !important;
    min-width: unset !important;
    height: auto !important;
}
.row-revrece-issue .elementor-image-box-img {
    margin-left: 0px !important;
}
.row-revrece-issue .elementor-image-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sticky-header-fix .elementor-nav-menu--dropdown .sub-arrow svg,
.sticky-header-fix .elementor-nav-menu--dropdown .dropdown-arrow {
    color: #fff !important;
    fill: #fff !important;
}

/* Elementor SVG arrow */
.sticky-header-fix .elementor-nav-menu--dropdown .sub-arrow svg path {
    fill: #fff !important;
}
.excerpt-post-custom .blog-eyebrow-title {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1em;
    font-style: italic;
    font-family: 'eicons';
    font-size: clamp(24px, 2.8vw, 39px);
}
.the-words-fix .elementor-widget-theme-post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.flyer-card-content .blog-eyebrow-title {
    display: block;
    width: 100%;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1em;
    font-style: italic;
    font-family: 'Liberation Sans';
    font-size: 16px;
    letter-spacing: 0.70px;
}


/* /Conatct-us/ */

/* ============================================
   DAC Enquiry Form — Contact Form 7
   ============================================ */

.dac-form-wrapper {
  font-family: 'Liberation Sans', Arial, sans-serif;
  max-width: 1200px;
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

/* Heading */
.dac-form-heading {
  font-family: 'Liberation Sans', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #8E5B18;
  margin: 0 0 28px 0;
  line-height: 1.2;
}

/* Field Groups */
.dac-field-group {
  margin-bottom: 18px;
}

/* Labels */
.dac-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 6px;
  line-height: 1.4;
}

.dac-required {
  color: #D28D2D;
  margin-left: 2px;
}

/* Input Wrapper */
.dac-input-wrap {
  position: relative;
}

/* All inputs, selects, textareas */
.dac-form-wrapper .wpcf7-form-control:not([type="submit"]),
.dac-form-wrapper input[type="text"],
.dac-form-wrapper input[type="email"],
.dac-form-wrapper input[type="tel"],
.dac-form-wrapper input[type="number"],
.dac-form-wrapper select,
.dac-form-wrapper textarea {
  width: 100%;
  height: 52px;
  border: 1px solid #E6E6E6;
  border-radius: 2px;
  padding: 0 16px;
  font-family: 'Liberation Sans', Arial, sans-serif;
  font-size: 15px;
  color: #222222;
  background: #ffffff;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
  display: block;
  padding-top: 10px;
}

/* Placeholder */
.dac-form-wrapper input::placeholder,
.dac-form-wrapper textarea::placeholder {
  color: #9B9B9B;
  font-size: 15px;
}

/* Focus State */
.dac-form-wrapper input:focus,
.dac-form-wrapper select:focus,
.dac-form-wrapper textarea:focus {
  border-color: #D28D2D;
  box-shadow: 0 0 0 1px #D28D2D22;
}

/* Textarea */
.dac-form-wrapper textarea.wpcf7-textarea,
.dac-form-wrapper textarea {
  height: 120px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}

/* Select Wrapper — custom arrow */
.dac-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555555;
  pointer-events: none;
}

.dac-form-wrapper select {
  cursor: pointer;
  padding-right: 36px;
  color: #9B9B9B; /* default "Please select" state */
}

.dac-form-wrapper select.dac-selected,
.dac-form-wrapper select:not([value=""]) {
  color: #222222;
}

/* Submit Group */
.dac-submit-group {
  margin-top: 8px;
  margin-bottom: 14px;
}

/* Button */
.dac-form-wrapper .dac-btn,
.dac-form-wrapper input[type="submit"].dac-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  background-color: #D28D2D;
  color: #ffffff;
  font-family: 'Liberation Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: auto;
  appearance: none;
  -webkit-appearance: none;
}

.dac-form-wrapper .dac-btn:hover,
.dac-form-wrapper input[type="submit"].dac-btn:hover {
  background-color: #3B77AE;
}

/* Paper plane icon via pseudo-element */
.dac-form-wrapper .wpcf7-submit::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M2.01 21L23 12 2.01 3 2 10l15 2-15 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Footer note */
.dac-footer-note {
  font-family: 'Liberation Sans', Arial, sans-serif;
  font-size: 13px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

/* CF7 validation messages */
.dac-form-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.dac-form-wrapper .wpcf7-response-output {
  border: none !important;
  padding: 12px 16px !important;
  margin: 16px 0 0 0 !important;
  font-size: 14px !important;
  border-radius: 2px !important;
}

.dac-form-wrapper .wpcf7-mail-sent-ok {
  background: #f0f9f0 !important;
  color: #2d6a2d !important;
  border-left: 3px solid #4CAF50 !important;
}

.dac-form-wrapper .wpcf7-validation-errors,
.dac-form-wrapper .wpcf7-spam-blocked {
  background: #fdf3f3 !important;
  color: #c0392b !important;
  border-left: 3px solid #c0392b !important;
}

/* Spinner */
.dac-form-wrapper .wpcf7-spinner {
  margin-left: 10px;
  vertical-align: middle;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .dac-form-wrapper {
    padding: 28px 0;
  }

  .dac-form-heading {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .dac-form-wrapper .dac-btn,
  .dac-form-wrapper input[type="submit"].dac-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dac-form-heading {
    font-size: 22px;
  }

  .dac-form-wrapper .wpcf7-form-control:not([type="submit"]),
  .dac-form-wrapper input,
  .dac-form-wrapper select,
  .dac-form-wrapper textarea {
    font-size: 14px;
  }
}
.text-center-grid h2 {
    text-align: center !important;
}
.blog-featured-post .blog-eyebrow-title {
    color: #846d62;
}
.short-code-style {
    font-family: 'Liberation Sans';
    font-weight: 600;
    font-size: 16px !important;
    color: #d28d2d;
}
.widget-2-sections .desert-air-tabs {
    margin: 0px;
    margin-bottom: 24px;
}
