@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #4fc3d7;
  --primary-dark: #3aafcc;
  --purple-primary: #8b5cf6;
  --purple-dark: #7c3aed;
  --secondary-color: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --white: #ffffff;
  --warning: #ffc107;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

/* Header Styles */
.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.custom-cnt {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile close button styling */
.close-nav {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  margin-bottom: 1rem;
  align-self: flex-end;
}


/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .custom-cnt {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }


}



/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

@media screen and (max-width:992px) {

  .hero-para {
    width: 100% !important;
  }
}

.hero-container,
.banner {
  position: relative;
  color: #fff;
  padding: 100px 0px;
  overflow: hidden;
  background-color: #272727c2;
  border-radius: 13px;
}


.banner2 {
  position: relative;
  color: #fff;
  padding: 100px 0px;
  overflow: hidden;
  background-color: #0000008c;
  border-radius: 20px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  top: 15%;
  z-index: 1;
  left: 3%;
  right: 2%;
}

.dx-hero-title {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 55px
}

.tab-pane,
.desc,
.col-11>.text-dark.mb-1,
.card-content>p,
/* #description>p, */
#country_description {
  text-align: justify;
}

.hero-para {
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  line-height: 1.6;
  width: 70%;
}

.btns .btn {
  padding: 10px 30px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.custom-btn {
  background-color: #7d0049;
  border: 2px solid #7d0049;
  color: #fff;
  border: none;
}

.custom-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #7d0049;
}

.custom-btn-outline {
  margin-left: 40px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #7d0049;
}

.custom-btn-outline:hover {
 background-color: #7d0049;
  color: #fff;
  border:2px solid #41363c00;
   margin-left: 40px;
  color: #fff;
}


/*How to become pilor tabs*/

.dx-guidance {
  display: flex;
  align-items: stretch;
}

.dx-guidance > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.dx-guidance .col-lg-7 > *:last-child {
  flex: 1; /* Makes the tab card grow */
}

.right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px; /* Increased from default, adjust as needed */
}

.step-card .line {
  position: absolute;
  left: 30px; /* Center of icon (60px / 2) */
  top: 60px; /* Start below icon */
  width: 2px;
  height: calc(55% + 60px); /* Extended to reach next card */
  /* background: linear-gradient(to bottom, #7d0049, #ddd); */
  background-color: #d0b8a8;
  z-index: 0;
}

.step-card:last-child .line {
  display: none; /* No line after last card */
}

.step-card .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.step-card .card-content {
  flex: 1;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 8px rgba(0, 0, 0, 0.08);
 
}

.step-card .card-content h5 {
  
  font-family: 'poppins','sans-serif';
  font-size: 20px;
  color:#000;
}

.step-card .card-content p {
  max-width: 90%;
  font-family: 'roboto','sans-serif';
  font-size: 20px;
  color:#000;
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    margin-bottom: 40px;
  }
  
  .step-card .line {
    height: calc(100% + 40px);
  }
}

/*****************************************/

.section-label {
  font-family: 'poppins','sans-serif';
  font-size: 15px;
  background-color: #f3dce6;
  color: #912c5e;
  font-weight: 600;
  padding: 10px 16px;
}

.custom-tab-container {
  /* box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1); */
  background-color: #333;
}

.tab-buttons {
  flex-basis: 30%;
  font-family: 'poppins','sans-serif';
  font-size: 20px;
  font-weight: 600;
}
.dx-mv-title {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  color: #000;
}
/* Vertical Tabs */
.tab-buttons .nav-link {
  text-align: left;
  font-weight: 600;
  width: 100%;
  color: #333;
  height: 30%;
  background: #fff;
  border: none;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0.3rem 0.75rem 0.5rem;
  gap: 10px;
  margin: 3px 0px;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
  font-family: "poppins";
}

.tab-buttons .nav-link:last-child {
  border-bottom: none;
}

.tab-buttons .nav-link.active {
  font-weight: 900;
}

.tab-buttons .nav-link .arrow {
  font-weight: bold;
  color: #000;
  margin-right: 10px;
}

.ms-auto.fa-solid,
.ms-auto.fa-solid {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #000 !important;
  display: grid;
  place-items: center;
}


.dgca-icon {
  width: 60px;
  height: 60px;
  border-radius: 20%;
}
.nav-pills .nav-link.active {
  color: #000;
  background: #fff;
}

.tab-content {
  flex-basis: 70%;
  background-color: #f1f1f1;
}

.tab-content p {
   font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #7e7e7e;
  line-height: 1.6;
}

/* Image + Shape Background */
.shape-bg {
  position: absolute;
  top: 0;
  right: 15%;
  width: 260px;
  height: 300px;
  background-color: #912c5e;
  opacity: 0.2;
  border-radius: 80% 50% 60% 70%;
  z-index: 1;
}

.pilot-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .shape-bg {
    display: none;
  }

  .none {
    display: none;
  }
}

.banner-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 50px 0px;
}

.banner-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.banner-content {
  max-width: 900px;
  margin: 0 auto;
}

.dx-banner-heading {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 40px
}

.dx-banner-p {
  font-family: 'roboto','sans-serif';
  font-weight: 400;
  font-style: normal;
  font-size: 24px
}

.brochure-btn {
  font-family: 'poppins','sans-serif';
  font-size: 18px;
  background-color: #7d0049;
  color: #fff;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.brochure-btn:hover {
  background-color: #96446a;
  color: #fff;
}

.cards {
  display: grid;
}

/* .step-card {
  position: relative;
  padding: 8px 10px;
  width: 100%;
  display: flex;
  justify-content: left;
  gap: 25px;
} */

.icon {
  position: relative;
  z-index: 100;
}

.card-content {
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 20px 10px;
  border-radius: 10px;
}

.card-content>p {
  font-size: 15px;
  margin: 0;
  max-width: 80%;
}

.line {
  width: 2px;
  height: 78%;
  background-color: #912c5e;
  position: absolute;
  top: 60px;
  left: 5%;
  z-index: -1;
}

@media screen and (max-width:992px) {
  .line {
    height: 85%;
    left: 12%;
  }

  .card-content>p {
    max-width: 100%;
  }

  .become-pilot>p {
    width: 100% !important;
  }
}
/* CORRECTED CSS */

/* Targets the h1 element that ALSO has the class .dx-ground */
h1.dx-ground { 
  font-family: 'poppins', sans-serif;
  font-size: 43px;
  color: #000;
}

/* Targets the p element that ALSO has the class .dx-ground */
p.dx-ground {
  font-family: 'roboto', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  width: 90%;
}

h6.dx-cards {
  font-family: 'poppins','sans-serif';
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.dx-cards li {
  font-family: 'roboto','sans-serif';
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

p.dx-cards {
  font-family: 'roboto','sans-serif';
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

p.dx-cards2 {
  font-family: 'roboto','sans-serif';
  font-size: 21px;
  font-weight: 400;
  color: #000;
}
.dx-cards2 li {
  font-family: 'roboto','sans-serif';
  font-size: 21px;
  font-weight: 400;
  color: #000;
}
.become-pilot>p {
  width: 55%;
  font-family: 'roboto','sans-serif';
  font-size: 19px;
  color: #000;
}

.become-pilot-image {
  /* height: 100%; */
  border-radius: 10px;
  margin-top: 0px;
}



.dgca-banner {
  padding: 35px 70px;
  color: #fff;
  border-radius: 25px;
}

.banner>.hero-background {
  border-radius: 10px;
  overflow: hidden;
}

.dgca-box {
  display: flex;
  /* align-items: center; */
  gap: 10%;
  
}
.dgca-box p{
  width: 200px;
  font-weight: 300;
  font-family: "onen sans" sans-serif;
  font-size: 20px;
  
}
.dgca-banner .icon {
  width: 50px;
  height: 50px;
  padding: 0px 15px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background-color: #e8864b;
}

.stant-out-container {
  padding: 30px;
}

.filght-icon>img {
  opacity: 0.4;
  transform: rotate(20deg);
}
.filght-icon>img {
  animation: flight-icon 3s ease-in-out infinite;
}

@keyframes flight-icon {
  0%, 100% {
    transform: translateY(0) rotate(30deg);
  }
  50% {
    transform: translateY(-10px) rotate(30deg);
  }
}
.flight-ani{
  animation: flight-ani 3s ease-in-out infinite;
}
@keyframes flight-ani {
  0%, 100% {
    transform: translateY(0) ;
  }
  50% {
    transform: translateY(-10px) ;
  }
}

.badge-highlight {
  background-color: #f3d3e7;
  color: #7d0049;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 15px;
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  background: rgba(58, 58, 58, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/************************************************************/

/***********************************************************/

.section-title {
  font-family: 'poppins','sans-serif';
  font-size: 63px;
  font-weight: 700;
  margin-top: 18px;
  color: #000;
}

.subtitle {
  font-family: 'poppins','sans-serif';
  font-size: 37px;
  font-weight: 900;
  color: #1e1d1d;
  margin-bottom: 25px;
  font-weight: 600;
  color: #000;
}

.advantage p {
  font-family: 'roboto','sans-serif';
  font-size: 20px;
  color: #000;
  max-width: 95%;
  line-height: 1.4;

}

.feature-tabs,
.tab-btns {
  display: flex;
  overflow-x: scroll;
  gap: 20px;
}

.tab-btns>.btn {
  min-width: 120px;
  max-width: 180px;
}

.feature-tabs::-webkit-scrollbar,
.tab-btns::-webkit-scrollbar {
  display: none;
}

.feature-tab {
  font-family: 'poppins','sans-serif';
  border: 2px solid #000000;
  padding: 9px 6px 6px 3px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  color: #7d0049;
  cursor: pointer;
  max-width: 160px !important;
  min-width: 120px;
  text-align: center;
}

.feature-tab.active {
  background-color: #7d0049;
  color: #fff;
  border-color: #7d0049;
}

.feature-list i {
  font-family: 'Open Sans','sans-serif';
  font-size: 17px;
  font-weight: 600;
  margin-right: 6px;
  color: #000;
}

#features {
  font-family: 'Open Sans','sans-serif';
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #000;  

}

.btn-start {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  color: #7d0049;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 20px;
  border: 4px solid #000000;
}
.btn-start :hover{
  border : 4px solid #3f3e3e;
  background-attachment: rgb(97, 1, 1);
}

.img-badge {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.img-badge i {
  color: green;
  margin-right: 5px;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 80%;
  margin: 0px auto !important;
}

.badge-top,
.badge-bottom,
.badge-right {
  position: absolute;
  z-index: 10;
}

.badge-top {
  top: 80px;
  left: 0px;
}

@media screen and (max-width:992px) {

  .image-container {
    margin: 50px auto 0px !important;
    width: 90% !important;
    height: 280px !important;
  }
}


.badge-right {
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 30px;
  left: 10px;
}

@media (max-width: 768px) {
  .image-container img {
    width: 100%;
    height: 100%;
  }
}

.card-custom {
  background-color: #f3d7e4;
  border-radius: 15px;
  height: 100%;
}

.card-img-top {
  border-radius: 15px 15px 0 0;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  padding: 15px;
  border-radius: 50%;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item-custom {
  flex: 0 0 33.3333%;
  padding: 15px;
}

@media (max-width: 992px) {
  .carousel-item-custom {
    flex: 0 0 50%;
  }

  .filght-icon {
    display: none;
  }

  .feature-tab {
    font-size: 0.70rem;
    padding: 8px;
  }

  .stant-out-container {
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .carousel-item-custom {
    flex: 0 0 100%;
  }
}

/* .carousel-buttons {
   justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.arrow-btn {
  border: 2px solid #000;
  background-color: #fff;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  padding-top: -20px;
} */
 .carousel-buttons {
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.arrow-btn {
  border: 2px solid #000;
  background-color: #fff;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  /* padding-top: -20px; */
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.dgca-class-box {
  border-radius: 35px;
  background-color: #e7cfdb;
  padding: 35px 40px;
  height: 95%;
}

h2.dx-country {
  font-family: 'poppins','sans-serif';
  font-size: 43px;
  font-weight: 700;
  color: #000;

}

p.dx-country {
  font-family: 'roboto','sans-serif';
  font-size: 22px;
  font-weight: 400;
  color: #000;
  max-width: 80%;
  line-height: 1.4;

}

btn.dx-country {
  font-family: 'roboto','sans-serif';
  font-size: 22px;
  font-weight: 400;
  color: #000;
  max-width: 80%;
  line-height: 1.4;

}
.country-container {
  padding: 3rem 20px;
}
.d-block p{
  font-size: 28px;
  font-family: "open sans" sans-serif;
}
@media screen and (max-width:992px) {
  .dgca-class-box {
    margin: 0px 10px;
  }

  .consultation-container {
    padding: 30px 30px 30px !important;
  }
}

.dgca-class-box>h1.text-center {
  font-size: 50px;
  color: #000;
}

.d-block>i {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 8px;
  font-size: 20px;
  background-color: orange;
}

.professinal-grids {
  display: grid;
  grid-template-areas:
    "img1 img2 img3"
    "img1 img5 img3"
    "img4 img5 img6";
  gap: 20px;
}

#img1 {
  grid-area: img1;
}

#img2 {
  grid-area: img2;
}

#img3 {
  grid-area: img3;
}

#img4 {
  grid-area: img4;
}

#img5 {
  grid-area: img5;
}

#img6 {
  grid-area: img6;
}

.professinal-grids>img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width:992px) {
  .professinal-grids {
    grid-template-areas:
      "img1"
      "img2"
      "img3"
      "img4"
      "img5"
      "img6";
  }
}


p.dx-cta {

  font-family: 'poppins','sans-serif';
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;

}

h2.dx-cta {
  font-family: 'poppins','sans-serif';
  font-size: 34px;
  font-weight: 700;
  color: #ffffff; 
}
.consultation-container {
  padding: 40px 40px 40px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(to bottom, #0a1a2fc5), url("../images/aviation/9.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.consultation-container h2{
  font-weight: 800;
}
.conslutation-btn {
  padding: 14px;
  background-color: #7d0049;
  color: #fff;
  width: 100%;border-radius: 0%;
}

.conslutation-btn:hover {
  background-color: #a70463;
}

.badge-tag {
  font-family: "Poppins";
  background-color: #f0d9e7;
  color: #7d0049;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 18px;
}

.tab-btns .btn {
  font-family: 'poppins','sans-serif';
  font-size:17px;
  border: 2px solid black;
  color: #6b2d5c;
  margin: 5px;
  max-width: 200px !important;
  width: 150px;
  border-radius: 10px;
  font-weight: 700;
}

.tab-btns .btn.active {
  background: linear-gradient(to right, #de3831, #007a4d, #002595);
  color: white;
  border-color: #000000;
}

.content-section {
  margin-top: 30px;
}

.info-list i {
 
  margin-right: 8px;
  color: #000;
}
#info-list {
 font-family: 'Open Sans','sans-serif';
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  color: #000;
}

.flight-image-container {
  position: relative;
  width: 65% !important;
  height: 350px !important;
  border-radius: 50%;
  margin: auto;
}

.flight-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.callout {
  position: absolute;
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.callout i {
  color: green;
  margin-right: 6px;
}

.callout-1 {
  top: 15%;
  left: -10%;
}

.callout-2 {
  top: 55%;
  right: -15%;
}

.callout-3 {
  bottom: 5%;
  left: 5%;
}

.btn-contact {
  font-family: 'poppins','sans-serif';
  font-size: 17px;
  font-weight: 600;
  border: 4px solid #000000;
  color: #6b2d5c;
  background: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 600;
  margin-top: 20px;
}

.btn-contact:hover {
  background-color: #6b2d5c;
  color: white;
}

@media (max-width: 768px) {
  .flight-image-container {
    margin-top: 30px !important;
    width: 100% !important;
    height: 250px !important;
  }

}

.dgca-banner .icon.bg-blue {
  background:none !important;
}

.head-text>h1 {
  font-size: 62px;
}

.bg-change-img {
  background: linear-gradient(to bottom, #0c152bc9), url("../images/aviation/bg-change-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.airline-card {
  
  background: linear-gradient(to bottom, #000000b2), url("../images/aviation/12.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  height: 500px;
  border-radius: 20px;
  color: #fff;
}

.airline-card h1 {

  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 39px;
  color: #fff;
}

.airline-card p {
  font-family: 'roboto','sans-serif';
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color: #fff;
}

.airline-content {
  padding: 0px 20px 0px;
  font-weight: 560;
}

.airline-content.bold-normal {
  font-weight: normal;
}

.airline-change-img {
  background: linear-gradient(to bottom, #000000b2), url("../images/aviation/11.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.preparation-container {
  padding: 30px;
  border-radius: 20px;
  background-color: #dfdfdf;
}

.preparation-img,
.loan-img {
  border-radius: 28px;
  overflow: hidden !important;
  display: flex;
  align-items: center;
}

.preparation-img>img {
  object-fit: cover;
  min-width: 100%;
}

.preparation-container .row .col-1 {
  width: 11.333333%;
  padding-right: 0;
}

.preparation-container .row .col-11 {
  width: 88.666667%;
  padding-left: 0;
}

.loan-container {
  padding: 35px;
  border-radius: 20px;
  background-color: #fbf9ed;
}


.loan-content {
  max-width: 80%;
}
.loan-content > .btn :hover{
  background-color: #4b4a4a;
  color: white;
}
@media screen and (max-width:992px) {
  .loan-content {
    max-width: 100%;
  }

  .airline-card {
    margin: 0px 18px;
  }

  .preparation-container .row .col-1 {
    width: 21%;
  }

  .preparation-container .row .col-11 {
    width: 79%;
  }

  .financial-head-icon {
    display: none;
  }

  .info-right {
    padding: 1.5rem 18px !important;
  }

}

.loan-content>.btn {
  font-family: 'poppins','sans-serif';
  font-weight:700;
  border: 4px solid #000000;
  color: #6b2d5c;
}

.side-icon {
  opacity: 0.7;
  transform: rotate(20deg);
}

.shade {
  color: #6a005f;
}

.head-content>p {
  max-width: 90%;
  margin: auto;
}

@media screen and (max-width:992px) {
  .head-content>p {
    max-width: 100%;
  }

  .testimonial-card {
    margin: 0px !important;
  }
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr;
  border-top: 1.5px solid #818181;
}

.table-row:last-child {
  border-bottom: 1.5px solid #818181;
}

.table-head,
.table-end {
  margin-top: 19px;
  /* display: grid; */
  align-items: center;
}

.table-mid {
  border-right: 1.5px solid #adadad;
  border-left: 1.5px solid #adadad;
  display: grid;
  place-items: center;
}

.table-mid,
.table-head,
.table-end {
  padding: 14px 20px;
}





/* Testimonials Section */
.testimonials-section {
  padding: 80px 16px;
  /* background-color: #ffffff; */
}

.testimonials-label {
  display: inline-block;
  /* background-color: #4ecdc4; */
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-content {
  margin-top: 20px;
}

.testimonials-heading {
  font-family: 'poppins','sans-serif';
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 25px;
}

.testimonials-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

/* Navigation Arrows */
.testimonial-navigation {
  display: flex;
  gap: 15px;
}

.nav-arrow {
  width: 50px;
  border: none;
  height: 50px;
  /* background-color: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-arrow:hover {
  /* border-color: #4ecdc4;
  color: #4ecdc4; */
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3); */
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  border: 3px solid #d9d9d9;
  padding: 30px;
  border-radius: 10px;
  /* margin-left: 20px; */
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
  /* background: #fff; */
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 30px;
  margin-top: 20px;
  font-style: normal;
}

/* Profile Section */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.profile-info h6 {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.profile-info p {
  font-family: 'poppins','sans-serif';
  font-size: 17px;
  color: #000000;
  margin: 0;
}

.testimonials-description {
  text-align: justify;
  word-spacing: 5px;
}

.financial-head>P {
  max-width: 80%;
}

@media screen and (max-width:992px) {
  .financial-head>P {
    max-width: 100%;
  }
}

.financial-head-icon {
  transform: rotate(30deg);
  opacity: 0.7;
}



.scholarship-box {
  background-color: #d3ebe8;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.info-left {
  flex: 1;
  align-items: flex-start;
}

.info-left>p {
  text-align: justify;
  word-spacing: 2px;
}

.info-right {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-right img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.info-right-content {
  position: relative;
  z-index: 2;
}

.btn-know-more {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  background-color: rgba(255, 255, 255, 0);
  border: 4px solid #fff;
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1rem;
}

.nav-arrows {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* .nav-arrow {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
} */
 .nav-arrow {
  width: 50px;
  border: none;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 30px;
}


@media (max-width: 768px) {
  .info-right {
    margin-top: 1.5rem;
  }
}

.btn-know-more:hover {
  background-color: #000;
  color: #fff;
}

.nav-arr-btns {
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  background-color: #d3ebe8;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  animation: marquee-scroll 25s linear infinite;
  margin: 25px 0px;
}

@media screen and (max-width:678px) {
  .row>* {
    padding: 0;
  }
}

.compitaters-container {
  overflow: hidden;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.faq-container {
  border-radius: 0px;
  padding: 60px 80px;
  background-color: #f1f1f1;
}

.faq-title {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 130px;
  margin-bottom: -36px;
  color: #f7f7f7;
}

.accordion-button {
  font-family: 'poppins','sans-serif';
  background-color: #a6a6a6;
  color: white;
  font-weight: 800;
  border-radius: 11px;
  margin-bottom: 14px;
}

.accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  background-color: #80004d !important;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-body {
  font-family: 'poppins','sans-serif';
  background-color: #f1f1f1;
  border-radius: 6px;
  padding: 15px 20px;
}

.accordion-item {
  margin-bottom: 26px; /* Adjust gap as needed */
  border: none;
  background: transparent;
}

@media (max-width: 576px) {
  .faq-background-title {
    font-size: 50px;
  }
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none;
}

/* Footer Styles */

.footer-section {
  font-family: 'poppins','sans-serif';
  background:#f8f2fc;
  padding: 60px 0 0;
  color: #000;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #a25cd8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 25px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.footer-links {
  
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 15px;
}

.contact-item {
  margin-bottom: 15px;
  color: #000000;
}

.contact-item strong {
  color: #4a5568;
}

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 15px;
  color: #000000;
  margin-bottom: 25px;
}

.btn-journey {
  /* background: #8b5cf6; */
  color: #000000;
  border: 2px solid #a49e9e;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  color: #000;
  font-size: 15px;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 14px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .btn-consultation-2 {
    max-width: 100%;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

.proven-container {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.708)), url("../images/aviation/bg-ground.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0px;
  margin: 80px 0px;
}

.proven-heading p {
  max-width: 65%;
  margin: auto;
}

.proven-card {
  font-family: 'poppins','sans-serif';
  background-color: white;
  border-radius: 30px;
  height: 100%;
  margin: auto 10px;
}

.proven-card>p {
  font-size: 14px;
}

.proven-card .btn {
  margin: auto;
  max-width: 80%;
  background: linear-gradient(to right, #0032a0, #bf0d3e);
}
.proven-card .btn:hover {
  /* background: linear-gradient(to right, #052261, #57031a); */
  /* border: 3px solid #000000; */
  background: #000000;
}
.proven-card .btn.india-color {
  background: linear-gradient(to right, #ff671f, #046a38) !important;
}
.proven-card .btn.india-color:hover {
  background: #000000 !important;
}
.proven-card .btn.southafrica-color {
  background: linear-gradient(to right, #de3831, #007a4d, #002395) !important;
}
.proven-card .btn.southafrica-color:hover {
  background: #000000 !important;
}
.dcga-banner-content h3 {

  font-family: 'poppins','sans-serif';
  font-size: 24px;
  font-weight: 700;
}

.dgca-banner-content>p {

  max-width: 80%;
  margin: auto;
}
.dgca-banner-content {
  font-family: "poppins";
}
@media screen and (max-width:992px) {
  .dgca-banner-content>p {
    max-width: 100%;
  }

  .hero-para {
    text-align: justify;
    width: 95% !important;
  }

  .shape2 {
    position: absolute;
    bottom: -100px;
    right: 0px !important;
    z-index: -1;
  }

  .badge-right {
    top: 60% !important;
    right: -50px !important;
  }

  .callout-2 {
    right: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .shape1,
  .shape2 {
    display: none !important;
  }
}
.shape2 {
  position: absolute;
  bottom: -100px;
  right: -180px;
  z-index: -1;
}

.shape1 {
  position: absolute;
  top: -100px;
  left: -180px;
  z-index: -1;
}

.h1style {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: -15px;
  color: #f7f7f7;
}


/* LTF CSS */

h1.dx-ltf {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;

}

p.dx-ltf-r {
font-family: 'roboto','sans-serif';
  font-weight: 400;
  font-size: 17px;
  color: #000;

}

.dx-ltf-logos {
font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 26px;
  color: #000;

}


.dx-ltf-r p {
font-family: 'roboto','sans-serif';
  font-weight: 400;
  font-size: 21px;
  color: #000;

}

.dx-ltf-pop p {
font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 20px;
  color: #000;

}

p.dx-ltf-pop {
font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 20px;
  color: #000;

}
.hero-content span {
  font-family: "roboto";
}
.icon-bordered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 17px;
}

.dx-ltf-point {
font-family: 'roboto','sans-serif';
  font-weight: 400;
  font-size: 19px;
  color: #ffffff;

}

p.dx-ltf-o {
font-family: 'Open Sans','sans-serif';
  font-weight: 600;
  font-size: 19px;
  color: #ffffff;

}

p.dx-ltf-o-b {
font-family: 'Open Sans','sans-serif';
  font-weight: 600;
  font-size: 19px;
  color: #7e7e7e;

}


h2.dx-ltf {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 46px;
  color: #000;
}
h4.dx-ltf {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 38px;
  color: #000;
}

h5.dx-ltf {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 38px;
  color: #000;
}

h3.dx-ltf {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  font-size: 43px;
  color: #d9d8d8; 
}

/* info list */
/* .col-12 col-sm-6 pb-4{
  padding-bottom: 10px;

} */
