body {
  margin: 0;
  padding: 0;
  background: #05061A !important;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
}

p {
  color: #535353;
}

.text-light-gray {
  color: #a5a5a5;
}

/* navbar css start */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 20px !important;
  margin-top: 20px;
  border-radius: 50px;
  background: white;
}

/* Logo Styles */
.logo a {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo a:hover {
  color: #3498db;
}

/* Navigation Menu Styles */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #002e5d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
}

.nav-links a:hover {
  color: #E5B44D;
}

/* Active link indicator */
.nav-links a.active {
  color: #E5B44D;
}

/* .nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E5B44D;
} */

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #002e5d;
  transition: all 0.3s ease;
}

.navbar ul {
  margin-bottom: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.desktop-invisible {
  display: none !important;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {

  /* Show hamburger menu on mobile */
  .hamburger {
    display: block;
  }

  /* Animate hamburger to X when menu is active */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Position the nav menu for mobile */
  .nav-menu {
    position: fixed;
    top: 110px;
    /* Height of the navbar */
    left: -100%;
    width: 100%;
    background-color: white;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
  }

  /* Show nav menu when active class is added */
  .nav-menu.active {
    left: 0;
    height: 100vh;
    flex-direction: column;
  }

  /* Stack nav links vertically */
  .nav-links {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .mobile-invisible {
    display: none !important;
  }

  .desktop-invisible {
    display: block !important;
  }
}

/* dropdown css  */

.dropdown ul li {
  margin-left: 0;
}

.dropdown .dropdown-menu {
  padding: 10px;
}

.dropdown ul li a {
  text-wrap: nowrap;
  padding: 10px 10px;
  display: flex;
  transition: all 0.3s;
  color: #535353;
}

.dropdown ul li a:hover {
  background: whitesmoke;
  border-radius: 10px;
  color: #002e5d;
}

@media all and (min-width: 768px) {

  .dropdown>.dropdown-menu,
  .dropdown.open>.dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.2s;
  }

  .dropdown:hover>.dropdown-menu,
  .dropdown.open:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* navbar css end  */

/* -------------------------------button css start------------------------------- */

/* Primary btn  */

.primary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: #E5B44D;
  /* border: 2px solid #f9fafb; */
  border-radius: 9999px;
  /* rounded-full */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
  text-decoration: none;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #002E5D;
  /* emerald-500 */
  border-radius: 9999px;
  transition: all 0.7s ease;
  z-index: -1;
}

.primary-btn:hover {
  color: #f9fafb;
  /* white */
}

.primary-btn:hover::before {
  left: 0;
  transform: scale(1.5);
}

.arrow-icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid white;
  border-radius: 50%;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: transparent;
  fill: white;
}

.primary-btn:hover .arrow-icon {
  transform: rotate(90deg);
  background: #f9fafb;
  /* white */
  border: none;
  fill: #1f2937;
  /* gray-800 */
}

/* secondary btn  */
.secondary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #002E5D;
  /* background: #002E5D; */
  /* border: 2px solid #f9fafb; */
  border-radius: 9999px;
  /* rounded-full */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
  text-decoration: none;
  border: 1px solid #002E5D;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #E5B44D;
  /* emerald-500 */
  border-radius: 9999px;
  transition: all 0.7s ease;
  z-index: -1;
}

.secondary-btn:hover {
  color: #002E5D;
  /* white */
}

/* .secondary-btn:hover::before {
  left: 0;
  transform: scale(1.5);
} */

.secondary-btn .arrow-icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid #002E5D;
  border-radius: 50%;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: transparent;
  fill: #002E5D;
}

.secondary-btn:hover .arrow-icon {
  transform: rotate(90deg);
  background: #002E5D;
  /* white */
  border: none;
  fill: white;
  /* gray-800 */
}

/* card btn  */

.card-btn {
  height: 100%;
}

.card-btn a {
  height: 100%;
  border-radius: 30px;
}

.card-btn {
  background: #002e5d !important;
  border-radius: 30px;
}

.card-btn a {
  color: white;
}

.card-btn .arrow-icon {
  border: 1px solid white;
  fill: white;
}

.card-btn:hover .arrow-icon {
  fill: #002e5d;
  background: white;
}

.card-btn:hover a {
  color: white;
}


/* -------------------------------button css end------------------------------- */


/* -------------------------------hero css start------------------------------- */
.section-hero .bg {
  background: url(./img/hero-bg.png);
  height: 550px;
  border-radius: 20px;
  margin-top: 20px;
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

.section-hero .content-left h1 {
  color: #002e5d;
  font-size: 60px;
  font-weight: 400;
}

.section-hero .content-left p {
  color: #002e5d;
  width: 460px;
}

.hero-btns {
  display: flex;
  gap: 10px;
}

.section-hero .schedule {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 20px;
  padding: 5px 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.section-hero .schedule p {
  margin: 0;
  color: #002E5D;
}

.section-hero .schedule i {
  color: #002e5d;
}

.section-hero .right {
  display: none;
}

/* -------------------------------hero css end------------------------------- */

/* -------------------------------hero css end------------------------------- */
.section-trust-badge .bg {
  display: flex;
  justify-content: center;
  position: relative;
  background-image: url(./img/cloud-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-direction: column;
  margin: 100px 0px;
}

.top-badges {
  display: flex;
  justify-content: space-around;
  gap: 20px
}

.bottom-badges {
  display: flex;
  justify-content: space-around;
  gap: 20px
}

.badge-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 20px;
  transition: all 0.3s;
}

.badge-trust:hover {
  transform: scale(1.1);
}

.badge-trust h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #002e5d;
}

.badge-trust p {
  margin: 0;
  font-size: 16px;
  color: #002e5d;
}

.badge-trust i {
  /* background: #E5B44D; */
  border-radius: 15px;
  font-size: 32px;
  height: 58px;
  width: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #002e5d;
  border: 1px solid #d1d1d1;
}

.section-trust-badge .left-t {
  left: 150px;
  top: 140px;
}

.section-trust-badge .left-b {
  left: 100px;
  bottom: 140px;
}

.section-trust-badge .right-t {
  right: 150px;
  top: 140px;
}

.section-trust-badge .right-b {
  right: 100px;
  bottom: 140px;
}


.tilt-image {
  animation: tilt 3s ease-in-out infinite alternate;
  transform-origin: bottom center;
  /* नीचे से swing effect */
}

@keyframes tilt {
  from {
    transform: rotate(-4deg);
  }

  /* left tilt */
  to {
    transform: rotate(4deg);
  }

  /* right tilt */
}

/* -------------------------------trust css end------------------------------- */

/* -------------------------------services css start------------------------------- */

.section-services .service-card {
  color: #002e5d;
  background: white;
  padding: 10px;
  border-radius: 30px;
  height: 100%;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-card .img-card {
  border-radius: 20px !important;
  margin-bottom: 10px;
  overflow: hidden;
  height: 150px;
}

.service-card .img-card img {
  transition: ease-in-out 0.3s;
}

.service-card:hover .img-card img {
  transform: scale(1.1);
}


.section-services .service-card h5 {
  font-size: 24px;
}


.section-services .service-card:hover {
  transform: translateY(-5px);
}

.section-services .service-card img {
  border-radius: 20px;
  margin-bottom: 10px;
  height: 150px;
  object-fit: cover;
}

.section-services .heading-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: white;
  border-radius: 30px;
  padding: 30px;
}

.section-services .heading-card h1 {
  font-size: 50px;
  color: #002e5d
}

.section-services .heading-card p {
  color: #002e5d;
  margin: 0;
}


/* -------------------------------services css end------------------------------- */

/*------------------------ Process css Start  ------------------------*/


.card-process {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: end;
  background: white;
  border-radius: 30px;
  padding: 30px !important;
}

/* Left Column */
.left {
  flex: 1 1 45%;
}

.subtitle {
  color: #002e5d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
}

.left h1 {
  font-size: 50px;
  color: #002e5d;
}

.left p {
  margin-bottom: 20px;
  color: #a3a3a3;
}

.video-box {
  position: relative;
}

.video-box img {
  width: 100%;
  border-radius: 20px;
}

/* Right Column */
.right {
  flex: 1 1 45%;
  /* border-left: 2px dashed #002e5d;
  padding-left: 30px; */
  height: 100%;
}

.step {
  margin-top: 40px;
  position: relative;
  border-left: 1px dashed #002e5d;
  padding-left: 30px;
  transition: all 0.3s;
}

.step i {
  background: #e5b44d;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -20px;
  color: white;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.step:hover i {
  transform: rotate(45deg);
}

.step-number {
  color: #e5b44d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.step h5 {
  color: #002e5d;
  margin-bottom: 6px;
  font-size: 24px;
}

.step p {
  color: #aaa;
  margin: 0;
}

.small-text {
  font-size: 13px;
  color: #777;
  display: block;
  margin-top: 10px;
}

/* Responsive */
@media(max-width: 768px) {
  .card-process {
    flex-direction: column;
  }

  .right {
    /* border-left: none;
    padding-left: 0;
    border-top: 2px dashed #002e5d;
    padding-top: 30px; */
  }
}

/*------------------------ Process css End  ------------------------*/

/*------------------------ faq css start  ------------------------*/

.faq-section .faq-body {
  border: 1px solid white;
  border-radius: 30px;
  padding: 30px !important;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* FAQ cards */
.faq-card {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  transition: all 0.3s;
}

.faq-card:hover {
  opacity: 0.8;
}

.faq-card.active {
  background: #003366;
  color: #fff;
}

/* Header with icons */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.faq-header .icon {
  font-size: 22px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.faq-card p {
  margin-top: 15px;
  display: none;
  font-size: 15px;
  line-height: 1.5;
}

.faq-card.active p {
  display: block;
  color: #a5a5a5;
}

.faq-section h1 {
  color: white;
}

.faq-cards {
  margin-top: 10px !important;
}

.faq-cards .col-lg-6 {
  margin-top: 20px;
}

.lcase {
  text-transform: lowercase;
}

/*------------------------ faq css End  ------------------------*/

/*------------------------ testimonial css start  ------------------------*/

.section-testimonial .testimonial-body {
  padding: 30px !important;
  background: white;
  border-radius: 30px;
}

.testimonial-body .quote-left i {
  transition: all 0.3s;
}

.testimonial-body:hover .quote-left i {
  transform: scale(1.3);
}

.testimonial-container {
  border-left: 1px solid gray;
  padding-left: 30px;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  margin: 0px;
  margin-top: 10px;
}

.author {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.role {
  color: gray;
  margin-bottom: 30px;
}

.profile-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  position: relative;
  align-items: center;
  overflow: auto;
}

.profile-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-images img.active {
  width: 70px;
  height: 70px;
  opacity: 1;
  border: 3px solid #333;
}

.section-testimonial .quote-left {
  display: flex;
  font-size: 50px;
  opacity: 0.2;
}

.section-testimonial .quote-right {
  display: flex;
  justify-content: end;
  font-size: 50px;
  opacity: 0.2;
}

@media (max-width: 600px) {
  .testimonial-text {
    font-size: 1.1rem;
  }

  .profile-images img.active {
    width: 60px;
    height: 60px;
  }
}

/*------------------------ testimonial css End  ------------------------*/

/*------------------------ Contact form css start  ------------------------*/
.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}

/* Section styles */

.section-contact .bg {
  border-radius: 30px;
  padding: 30px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
  }
}

/* form css  */

.form-container {
  background: #1e2738;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}

.section-contact .name-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.section-contact input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-bottom: 1px solid #444;
  background: transparent;
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
  padding-left: 0px;
}

.section-contact textarea {
  resize: none;
  height: 80px;
}

.section-contact option {
  color: black;
}

/* form css  end*/

/*------------------------ Contact form css end  ------------------------*/

/*------------------------ footer css start  ------------------------*/

.section-footer .footer-body {
  border: 1px solid white;
  border-radius: 30px;
  padding: 30px !important;
}

.section-footer .contact {
  display: flex;
  gap: 8px;
  align-items: center;
  color: white;
  margin-bottom: 10px;
}

.section-footer .contact h6 {
  margin: 0;
  font-size: 18px;
}

.section-footer .contact i {
  font-size: 20px;
}

/* scial icns css  */

.social-icons-btn {
  display: flex;
}

.icons {
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  margin: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* box-shadow: 
    0 2px 2px #d1d1d1; */
  color: #fff;
  cursor: pointer;
  transition:
    all 0.15s ease;
}

.twitter:hover {
  background: #00ECEE;
}

.facebook:hover {
  background: #4267B2;
}

.instagram:hover {
  background-image:
    linear-gradient(#8a3ab9,
      #e95950,
      #bc2a8d,
      #fccc63);
}

.linkedin:hover {
  background: #0A66C2;
}

/* scial icns css  */

.section-footer .quick-links .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-footer .quick-links a {
  color: white;
  text-decoration: none;
}

.section-footer .quick-links h5 {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

.section-footer .official-info h5 {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

/*------------------------ footer css End  ------------------------*/

/*------------------------ about us css start  ------------------------*/
.section-about-us .about-us-body {
  padding: 30px;
  border-radius: 30px;
}


.section-about-us h1 {
  color: white;
}


/* video css start  */
.video-background-about {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}

/* Section styles */

.section-about-us .about-us-body {
  border-radius: 30px;
  padding: 30px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0 20px;
  color: white;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 5, 32, 0.8);
    /* background-image: linear-gradient(to right, rgba(0, 8, 56, 0.705), rgba(0, 0, 0, 0)); */
    z-index: -1;
  }
}

/* video css end  */
/*------------------------ about us css End  ------------------------*/


/*------------------------ service detail css start  ------------------------*/
/* video css start  */
.video-background-services {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}

/* Section styles */

.section-services-hero .service-hero-bg {
  border-radius: 30px;
  padding: 30px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  overflow: hidden;
  height: 500px;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    /* background-image: linear-gradient(to right, rgba(0, 8, 56, 0.705), rgba(0, 0, 0, 0)); */
    z-index: -1;
  }
}

/* video css end  */
/*------------------------ service detail css End  ------------------------*/



/*------------------------ overview css Start  ------------------------*/
.section-service-overview .content {
  padding: 30px;
  background: white;
  border-radius: 30px;
}

.section-service-overview img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

/*------------------------ overview css End  ------------------------*/


/*------------------------ section service detail End  ------------------------*/

.service-core-services-body {
  background: white;
  border-radius: 30px;
  padding: 30px !important;
}

.service-core-services-body h5 {
  margin: 0;
  margin-top: 10px;
  color: #002e5d;
}

.service-core-services-body .core-service-card {
  border: 1px solid gray;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s;
  background: white;
}

.service-core-services-body .core-service-card:hover {
  transform: translateY(-5px);
}

.service-core-services-body p {
  margin: 0;
}

.service-core-services-body .core-service-card ul {
  padding-left: 20px;
  margin: 0;
  margin-top: 10px;
}

.service-core-services-body .core-service-card ul li {
  color: #535353;
}

.heading {
  color: #002e5d;
  font-weight: 400;
}

.core-service-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}


/*------------------------ section service detail End  ------------------------*/


/*------------------------ section why choose us start  ------------------------*/

.why-choose-body {
  padding: 30px;
  align-items: center;
  background: white;
  border-radius: 30px;
}

.text-content {}

.text-content .sub-title {
  color: #0077b6;
  font-weight: bold;
  margin-bottom: 10px;
}

.text-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.steps {
  display: flex;
}

.steps-bg {
  width: 100%;
  background: url("./img/worker-plane-fuel.jpg") center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  background-position: bottom;
  border: 1px solid gray;
}

.step-card {
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  /* box-shadow: 0 10px 30px 0 rgb(45 45 45 / .2); */
  border-left: 1px solid gray;
}

.step-card h3 {
  font-size: 36px;
  color: #002e5d;
  margin-bottom: 100px;
  text-align: end;
  padding: 20px;
}

.step-card h5 {
  margin-bottom: 10px;
  color: #002e5d;
}

.step-card p {
  margin: 0;
}

.step-card a {
  font-size: 0.9rem;
  font-weight: bold;
  color: #0077b6;
  text-decoration: none;
}

.step-card .step-card-content {
  background: white;
  height: 100%;
  padding: 20px;
  width: 100%;
}

.step-card.active {
  background: #002e5dcc;
}

.step-card.active h3 {
  color: white;
}

.step-card:hover {
  background: #002e5dcc;
}

.step-card:hover h3 {
  color: white;
}

/*------------------------ section why choose us End  ------------------------*/


/*------------------------ section industries start  ------------------------*/
.section-inndustries .box {
  height: 300px;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.section-inndustries .bg1 {
  background-image: url('./img/Commercial-Airlines.jpg');
}

.section-inndustries .bg2 {
  background-image: url('./img/private-charter-flight.jpg');
}

.section-inndustries .bg3 {
  background-image: url('./img/cargo-airline.jpg');
}

.section-inndustries .bg4 {
  background-image: url('./img/worker-plane-fuel.jpg');
}

.section-inndustries h5 {
  color: white;
}

.section-inndustries .box p {
  color: #bbb;
}

.section-inndustries .box p {
  margin: 0;
}

.section-inndustries-body {
  background: white;
  padding: 30px;
  border-radius: 20px;
}

/*------------------------ section industries End  ------------------------*/

/*------------------------ section cta start  ------------------------*/
.section-cta img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  right: 60px;
  z-index: -1;
}

.section-cta .cta-content-body {
  background: white;
  border-radius: 30px;
  padding: 30px;
  margin: 50px;
  width: 100%;
}

.section-cta .section-cta-body {
  display: flex;
  align-items: center;
}

.section-cta a {
  font-size: 14px;
}

.section-cta h1 {
  color: #002e5d
}

.short-t {
  font-size: 24px;
  color: #002e5d;
}

.cta-content {
  width: 100%;
}

/*------------------------ section cta End  ------------------------*/

/*------------------------ section all services cass start  ------------------------*/

.bg-opacity {
  background: rgba(0, 0, 0, .5);
}

.section-service-box .left {
  padding: 30px;
  border-radius: 30px;
  height: 100%;
}

.section-service-box .row {
  align-items: center;
}

.section-service-box img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
}

.section-service-box h5 {
  font-size: 24px;
  color: white;
}

.section-service-box ul {
  padding: 0;
}

.section-service-box li {
  list-style: none;
  color: white;
}

.section-service-box .services-heading {
  background: white;
  border-radius: 30px;
  padding: 30px;
}

.section-service-box .services-heading h1 {
  color: #002E5D;
}

/*------------------------ section all services cass end  ------------------------*/

/*------------------------ section about us hero css start  ------------------------*/
.section-about-hero .about-hero-body {
  background-image: url(./img/plane.png);
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 30px !important;
  height: 100%;
  background-size: cover;
  /* background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply; */
  background-position: left;
  border: 1px solid gray;
}

.section-about-hero .right-content {
  /* background: white;
  padding: 30px;
  border-radius: 30px; */
  margin-top: 200px;
}

/*------------------------ section about us hero cas end  ------------------------*/

/*------------------------ section-gsa-mission cas end  ------------------------*/
.section-gsa-mission-body {
  background: white;
  border-radius: 30px;
  padding: 30px;
}

.section-gsa-mission img {
  width: 100%;
  border-radius: 20px;
}

.section-gsa-mission h5 {
  color: #002e5d;
  font-weight: 400;
  font-size: 24px;
}

.section-gsa-mission .content {
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.section-gsa-mission .content p {}

.section-gsa-mission i {
  font-size: 100px;
  position: absolute;
  color: #ededed;
  z-index: -1;
  right: 30px;
  top: 30px;
}

/*------------------------ section-gsa-mission css end  ------------------------*/

/*------------------------ section-gsa-mission css end  ------------------------*/
.section-airports-serve a {
  background: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}


.section-airports-serve a h5 {
  color: #002e5d;
  margin: 0;
  margin-top: 10px;
}

.section-airports-serve a img {
  width: 100px;
  height: 100px;
}

/*------------------------ section-gsa-mission css end  ------------------------*/

/*------------------------ industries-about cas end  ------------------------*/
.industries-about .content {
  background: white;
  padding: 40px;
  border-radius: 30px;
  height: 100%;
}

.industries-about .content p {
  background: whitesmoke;
  padding: 10px;
  border-radius: 10px;
  margin: 0;
}

.industries-about .content h5 {
  color: #002e5d;
  margin: 20px 0px
}

.industries-about .content .flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/*------------------------ industries-about cas end  ------------------------*/

/*------------------------ section-team cas start  ------------------------*/
.team-section {}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.team-section p {
  max-width: 700px;
  margin: 0;
}

.team-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.team-card {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  background: #ccc;
  display: flex;
  align-items: flex-end;
}

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: left;
}

.team-card.active {
  flex: 3;
}

.team-card.active .team-info {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }

  .team-card {
    flex: unset;
    height: 250px;
  }

  .team-card.active {
    height: 400px;
  }
}

/*------------------------ section-team cas end  ------------------------*/

/*------------------------ section-contact cas start  ------------------------*/
.section-contact-hero .bg {
  background-image: url(./img/plane-png.png);
  padding: 30px;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: multiply;
  background-position: top;
  border: 1px solid gray;
  background-size: cover;
}

.section-contact-hero .contact-card {
  border: 1px solid gray;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s;
}

.section-contact-hero .contact-card:hover {
  background: white;
  border: 1px solid white;
}

.section-contact-hero .contact-card:hover i {
  color: #002e5d;
}

.section-contact-hero .contact-card:hover h5 {
  color: #002e5d !important;
}

.section-contact-hero .contact-card i {
  border: 1px solid gray;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}


.section-contact-hero .contact-cards {
  height: 100%;
}

.section-service-covered .airport-card {
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.section-service-covered .airport-card h5 {
  color: white;
  font-weight: 400;
  font-size: 18px;
  padding: 10px;
  border-radius: 10px;
}

.section-connect-us .content-right {
  background: white;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  height: 100%;
  border: 1px solid gray;
  margin-top: 10px;
  /* background-image: url(./img/plane-calendar.jpeg); */
  background-position: left;
  /* background-size: cover; */
  background-repeat: no-repeat;
  border-right: 1px solid gray;
}

.section-connect-us .content-right i {
  font-size: 200px;
  position: absolute;
  color: #ededed;
  z-index: -1;
  right: 30px;
  top: 30px;
}

.section-connect-us .content-right h5 {
  color: #002e5d;
}

.section-connect-us .content-connect {
  background-image: url(./img/mobile-aviation.jpeg);
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-position: left;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid gray;
  margin-top: 10px;
}

.section-connect-us .section-connect-us-body {
  padding: 30px;
  border-radius: 30px;
  background: white;
}

/*------------------------ section-contact cas end  ------------------------*/

/*------------------------ section-blog css start  ------------------------*/
.section-blog .section-blog-body {
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.section-blog .section-blog-body .blog-card img {
  width: 100%;
  border-radius: 20px;
  height: 200px;
  object-fit: cover;
}

.section-blog .section-blog-body .blog-card h5 {
  color: #002e5d;
  font-weight: 400;
  margin-top: 10px;
}

.section-blog .section-blog-body .blog-card {
  text-decoration: none;
}


.btn-arrow {
  background: #002e5d;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
}

/*------------------------ section-blog css end  ------------------------*/

/*------------------------ all-blog css start  ------------------------*/
.section-blog-hero .section-blog-hero-body {
  background: white;
  border-radius: 30px;
}

.section-blog-hero .section-blog-hero-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-blog-hero .section-blog-hero-body .content {
  padding: 30px;
}

.blog-main .blog-main-body {
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.blog-main .blog-cards {
  /* background: white;
  padding: 30px;
  border-radius: 30px; */
}

.blog-main .blog-card {
  text-decoration: none;
}

.blog-main .blog-card img {
  width: 100%;
  border-radius: 20px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}


.blog-main .blog-card h5 {
  color: #002e5d;
  font-weight: 400;
  font-size: 18px;
}

.blog-main .blog-card p {
  font-size: 14px;
}

.blog-main .blog-categories {
  /* background: white;
  padding: 30px;
  border-radius: 30px; */
  position: sticky;
  top: 20px;
}

.blog-main .blog-category {
  display: flex;
  flex-direction: column;
}

.blog-main .blog-category a {
  text-decoration: none;
  color: #002e5d;
  padding: 10px 0px;
}

/*------------------------ all-blog css end  ------------------------*/

.whatsapp-btn a {
  color: #002e5d;
  background: white;
  font-size: 30px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-btn a:hover {
  opacity: 0.5;
  transform: translateY(-5px);
}

/*------------------------ blog-detail css start  ------------------------*/
.blog-detail-hero img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
  margin-bottom: 20px;
}

.section-blog-detail h5 {
  color: #002e5d;
  margin-bottom: 15px;
  font-size: 36px;
}

.section-blog-detail h6 {
  color: #002e5d;
}


.section-blog-detail ul {
  padding: 0;
  padding-left: 20px;
}

.section-blog-detail ul li {
  color: #535353;
}

.section-blog-detail hr {
  margin: 50px 0px 20px 0px;
}


.section-blog-detail .section-blog-detail-body {
  padding: 30px;
  border-radius: 30px;
  background: white;
}

.fw-600 {
  font-weight: 600;
}

.section-blog-detail .blog-sidebar ul {
  padding: 0;
}

.section-blog-detail .blog-sidebar li {
  list-style: none;
}

.section-blog-detail .blog-sidebar a {
  color: #535353;
  text-decoration: none;
  padding: 10px 0px;
  width: 100%;
  display: flex;
  border-left: 3px solid gainsboro;
  padding-left: 20px;
  transition: all 0.3s;
}

.section-blog-detail .blog-sidebar a.active {
  border-left: 3px solid #002e5d;
  font-weight: 600;
  color: #002E5D;
}

.section-blog-detail .blog-sidebar {
  position: sticky;
  top: 30px;
}

.section-blog-detail .blog-sidebar h5 {
  font-size: 20px;
}

.blog-detail-contact .bg {
  background-image: url(./img/Jet-Fuel-Supply-Services.jpg);
  border-radius: 30px;
  padding: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
}

.blog-detail-contact img {
  width: 100%;
  border-radius: 20px;
}


/*------------------------ blog-detail css end  ------------------------*/

/*------------------------ section-career-hero css end  ------------------------*/
.section-career-hero .bg {
  background-image: url(./img/aviation-team-walk.jpg);
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 30px;
  background-size: cover;
  height: 400px;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-job-listings .section-job-listings-body {
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.section-job-listings .section-job-listings-body .job-list-card {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #002e5d;
  height: 100%;
}

.section-job-listings .section-job-listings-body .job-list-card h5 {
  color: #002e5d;
  font-size: 24px;
}

.section-work-with-us img {
  width: 100%;
  border-radius: 30px;
}

.section-work-with-us h5 {
  color: white;
}

.section-work-with-us .what-we-offer{
  border-left: 5px solid white;
  margin-bottom: 30px;
  padding: 10px 20px;
  transition: all 0.3s;
}

.section-work-with-us .what-we-offer:hover{
  background: white;
  border-left: 5px solid #002e5d;
}

.section-work-with-us .what-we-offer:hover h5{
  color: #002e5d;
}

.section-work-with-us .what-we-offer:hover p{
  color: #002e5d;
}


.section-company-culture .section-company-culture-body{
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.section-company-culture .section-company-culture-body h5{
  color: #002e5d;
  margin: 0;
  margin-top: 10px;
}

.section-company-culture .section-company-culture-body i{
  color: #002e5d;
  font-size: 40px;
  transition: all 0.3s;
}

.section-company-culture .section-company-culture-body .company-culture-card:hover i{
  transform: translateY(-10px);
}

.section-job-profile-hero .section-job-profile-hero-body{
  background: white;
  border-radius: 30px;
  padding: 30px;
}

.section-job-profile-detail .section-job-profile-detail-body{
}

.section-job-profile-detail h5{
  color: white;
}

.section-job-profile-detail ul li{
      color: #a5a5a5;
}

.section-job-profile-detail p{
  color: #a5a5a5;
}

.section-job-profile-detail hr{
  color: white;
  margin: 50px 0px;
}


/* Form career css start */
.form-career {
  background: #fff;
  padding: 25px;
  border-radius: 30px;
  /* box-shadow: 0px 4px 15px rgba(0,0,0,0.1); */
  width: 100%;
  position: sticky;
  top: 20px;
}

.form-career h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #111;
}

.form-career p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Input Fields */
.form-career .form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-career .form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-career .form-group input,
.form-career .form-group textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.form-career .form-group input:focus,
.form-career .form-group textarea:focus {
  border-bottom: 2px solid #002e5d;
}

/* File Upload */
.form-career input[type="file"] {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  background: #fafafa;
}

/* Form career css end */

.blog-details .chapter{
  padding-top: 30px;
}

.without-icon-btn{
  transition: all 0.3s;
}

.without-icon-btn:hover{
  background: #002E5D;
  color: white;
}

::selection {
  background-color:#002E5D ; /* Yellow background for selection */
  color: white;          /* Dark text color for selected text */
}

/*------------------------ section-career-hero css end  ------------------------*/

.section-terms-hero .section-terms-hero-body{
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.section-terms-detail .section-terms-detail-body{
  background: white;
  padding: 30px;
  border-radius: 30px;
}

.section-terms-detail .section-terms-detail-body h5{
  color: #002e5d;
  font-size: 24px;
  margin-bottom: 20px;
}

.section-terms-detail .section-terms-detail-body h6{
  color: #002e5d;
}

.section-terms-detail .section-terms-detail-body hr{
  color: gray;
  margin: 40px 0px;
}

.section-terms-detail .section-terms-detail-body .contact i{
  margin-right: 10px;
}

/*------------------------ Responsive Media Query Start  ------------------------*/

@media only screen and (max-width: 600px) {

  .section-hero .content-left h1 {
    font-size: 36px;
  }

  .section-hero .content-left p {
    width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .top-badges {
    flex-direction: column;
    gap: 10px;
  }

  .bottom-badges {
    flex-direction: column;
    gap: 10px;
  }

  .section-services .heading-card h1 {
    font-size: 36px;
  }

  .section-services .heading-card {
    padding: 30px;
  }

  .section-services .col-lg-3 {
    margin-top: 10px;
  }

  .service-card.mt-4 {
    margin: 0 !important;
  }

  .card-btn.mt-4 {
    margin-top: 10px !important;
  }

  .testimonial-container {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid gray;
    padding-top: 20px;
  }

  .badge-trust h5 {
    font-size: 18px;
  }

  .badge-trust p {
    font-size: 14px;
  }

  .badge-trust i {
    height: 50px;
    width: 50px;
  }

  .left h1 {
    font-size: 36px;
  }

  .section-footer .official-info {
    margin-top: 50px;
  }

  .section-footer .quick-links {
    margin-top: 50px;
  }

  .steps {
    display: block !important;
  }

  .step-card h3 {
    margin: 0;
  }

  .step-card {
    display: flex;
  }

  .p-24 {
    padding: 24px !important;
  }

  .section-cta a {
    font-size: 14px;
  }

  .section-hero .bg {
    background: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
  }

  .content-left {
    background: white;
    padding: 30px;
    border-radius: 30px;
  }

  .section-hero .right {
    width: 100%;
  }

  .section-hero .right img {
    margin-top: -70px;
    width: 100%;
  }

  .section-hero .right {
    display: block;
  }
}


@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 820px) {


  .testimonial-container {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid gray;
    padding-top: 20px;
  }

  .steps {
    display: block !important;
  }

  .step-card h3 {
    margin: 0;
  }

  .step-card {
    display: flex;
  }

  .p-24 {
    padding: 24px !important;
  }

  .section-cta .section-cta-body {
    flex-direction: column;
  }

  .section-cta .cta-content-body {
    margin: 0;
  }

  .section-cta img {
    display: none;
  }

  .section-service-box div.service-box:nth-child(1) .row {
    flex-direction: column-reverse !important;
  }

  .section-service-box div.service-box:nth-child(2) .row {
    flex-direction: column-reverse !important;
  }

  .section-service-box div.service-box:nth-child(3) .row {
    flex-direction: column-reverse !important;
  }

  .section-service-box div.service-box:nth-child(4) .row {
    flex-direction: column-reverse !important;
  }

  .section-service-box div.service-box:nth-child(5) .row {
    flex-direction: column-reverse !important;
  }

  .section-service-box div.service-box:nth-child(6) .row {
    flex-direction: column-reverse !important;
  }

  .mobile-invisible {
    display: none;
  }

  .section-service-covered .airport-card {
    height: 200px;
  }

  .blog-main .blog-cards {
    margin-top: 50px;
  }

}

/*------------------------ Responsive Media Query End  ------------------------*/