@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #090782;
  --secondary: #0c0c0c;
  --light: #f8f9fa;
  --dark: #182333;
  --link-color: #0f88b7;
}
a {
  text-decoration: none !important;
}
body {
  /* font-family: "Kanit", sans-serif !important; */
  font-family: "Montserrat", sans-serif !important;

  color: var(--secondary);
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Kanit", sans-serif !important; */
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
  border-radius: 10px;
  border: 0;
  padding: 10px 30px;
}
.btn:hover {
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}
.btn.btn-primary {
  background: var(--link-color) !important;
  border-color: var(--link-color) !important;
}
.btn.btn-primary:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar {
  background-color: #fff;
}
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin: 20px 12px;
  padding: 5px 0;
  color: #000;
  font-weight: 500;
  outline: none;
  position: relative;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--light);
  transition: 0.3s ease all;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ffbf00;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar .submenu-dropdown {
  list-style: none;
  padding: 10px;
  margin: 0;
  background: #fff;
  box-shadow: 0 3px 10px #00000020;
  position: absolute;
  top: 90px;
  transition: 0.3s ease all;
  opacity: 0;
  visibility: hidden;
}
.navbar .submenu-dropdown .nav-link {
  margin: 0;
  padding: 10px;
}
.navbar .has-submenu:hover .submenu-dropdown {
  top: 74px;
  opacity: 1;
  visibility: visible;
}
.for-mobile 
{
  display: none;
}
@media (max-width: 1099px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 15px;
    padding: 20px 0;
  }

  .navbar .navbar-nav {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 25px;
    border-top: 1px solid #eeeeee;
  }
  .navbar .submenu-dropdown {
    position: inherit;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .for-desktop
  {
    display: none;
  }
  .for-mobile
  {
    display: inline-flex;
  }
  .navbar .submenu-dropdown.show {
    display: block;
    border: 1px solid #f2f2f2;
    padding: 15px 25px;
    box-shadow: none;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.hero-section,
.improve-knowladge {
  /* min-height: 90vh; */
  margin-top: 74px;
}
.main-hero-section {
  min-height: 90vh;
}
.hero-section .container {
  align-items: center;
  border-radius: 30px;
  background: #f1f1f1;
}
.hero-section h2 {
  font-size: 3rem;
}
.hero-section h2,
.hero-section h1 {
  text-shadow: 0 3px 6px #000;
}

.tagline {
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--link-color));
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 40px;
}

.hero-heading span {
  color: var(--link-color);
}

.email-box {
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.email-box input {
  flex: 1;
  border: 1px solid #999999;
  background: #fff;
  color: var(--secondary);
  outline: none;
  padding: 10px 20px;
  border-radius: 30px;
}
.cta-btn svg {
  width: 30px;
  height: auto;
}
.hero-section .btn {
  padding: 15px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  transition: 1s;
  border-radius: 0px;
  min-width: 186px;
}
.hero-section .carousel-caption {
  bottom: 50%;
  translate: 0 50%;
}
.hero-section video {
  object-fit: cover;
  width: 100%;
  background-color: #6b6b6b;
}
.main-hero-section video {
  height: 90vh;
}

/**************SVG****************/

path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta-btn:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta-btn:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta-btn:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #fbc638;
  }
  100% {
    fill: white;
  }
}

.owl-carousel .item img {
  /* width: 80px; */
}

.robot-img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.carousel-section {
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 90%;
}
.highlight {
  color: var(--primary);
}

.hero-info-section {
  padding: 80px 20px;
  background: var(--light);
}

.page-heading {
  font-size: 48px;
  font-weight: bold;
}
.page-heading span {
  color: var(--primary);
}
.hero-info-section p {
}

.stats-box {
  margin-top: 30px;
}

.stat-item {
  padding: 15px 10px;
}

.stat-item h4 {
  font-size: 16px;
  font-weight: bold;
}
.stat-item ul {
  padding-left: 1rem;
}
.stat-item ul li {
  font-size: 14px;
}
.rating-stars i {
  color: #ffc107;
}

.youtube-info {
  color: var(--secondary);
  font-weight: bold;
  font-size: 16px;
}

.click-here {
  /* color: ; */
  font-weight: bold;
  margin-left: 20px;
}

.click-here i {
  font-size: 18px;
  margin-left: 6px;
}

.robot-img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.course-card {
  background: #fff;
  border-radius: 12px;
  padding: 13px;
  position: relative;
  height: 100%;
  transition: 0.3s ease all;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid #f3f4f6;
}

.course-card:hover {
  translate: 0 -5px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
}

.course-title {
  font-size: 16px;
  font-weight: 600;
  padding-top: 8px;
  color: var(--secondary);
  display: block;
  line-height: 1.2;
}

.course-desc {
  font-size: 13px;
  color: var(--secondary);
  margin: 0;
}
.course-card ul li {
  font-size: 14px;
  color: #cfd3f5;
}
.course-card .icon {
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.course-card .icon img {
  height: 90%;
}
.choose-img-box {
  position: relative;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-radius: 0.75rem;
}
.choose-img-box img {
  border-radius: 0.75rem;
}
.choose-img-box-inner {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  width: fit-content;
  position: absolute;
  background: #fff;
}
.choose-img-box-inner1 {
  top: -20px;
  right: -20px;
}
.choose-img-box-inner2 {
  bottom: 25%;
  left: -20px;
}
.choose-img-box-inner3 {
  bottom: -20px;
  left: -20px;
}
.choose-img-box-inner h4,
.choose-img-box-inner h6 {
  font-weight: bold;
}
.choose-img-box-inner p,
.choose-img-box-inner h4,
.choose-img-box-inner h6 {
  margin-bottom: 0;
  line-height: 1.2;
}
.robot-img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tab-section {
  padding: 60px 0;
  background: #0907820d;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.tab-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  scale: -1;
  opacity: 0.05;
}
.tab-section .nav-pills {
  position: sticky;
  top: 100px;
}
.tab-section .nav-pills .nav-link {
  border-radius: 7px;
  color: #000;
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px;
  font-size: 16px;
  background: transparent;
  position: relative;
  overflow: hidden;
  border: 0;
}
.tab-section .nav-pills .nav-link span {
  position: relative;
  z-index: 1;
  transition: 0.5s ease all;
}
/* .tab-section .nav-pills .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0%;
  height: 100%;
  background: var(--primary);
  transform: translateY(-50%);
  transition: 0.5s ease all;  
} */

.tab-section .nav-pills .nav-link.active,
.tab-section .nav-pills .nav-link:hover {
  background: var(--primary);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05),
    0 1.5rem 2.2rem rgba(0, 0, 0, 0.1) !important;
}
.tab-section .nav-pills .nav-link.active span,
.tab-section .nav-pills .nav-link:hover span {
  color: #fff !important;
}

.tab-section .tab-content .card {
  border: none;
  border-radius: 12px;
  background: #f0f0f0;
}

.tab-section .category-badge {
  font-size: 12px;
  color: red;
}

.tab-section .tab-pane h2 {
  font-weight: bold;
}
.drone-tech-card {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05),
    0 0.5rem 1.2rem rgba(0, 0, 0, 0.1) !important;
  border-radius: 15px;
}
.drone-tech-card img {
  transition: 0.3s ease all;
  /* filter: blur(1px) brightness(0.8); */
  object-fit: cover;
  object-position: center;
}
.drone-tech-card:hover img {
  scale: 1.05;
  filter: brightness(0.9);
}
.drone-tech-card-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, #000000cc, transparent);
}
.drone-tech-card-text .badge,
.badge {
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  padding: 6px 15px;
}
.drone-tech-card-text h5 {
  font-size: 27px;
  color: #fff;
  line-height: 1.2;
  margin-top: 15px;
}
.drone-tech-card-text p {
  font-weight: 500;
  color: var(--light);
}
.drone-tech-card:hover .drone-tech-card-text p i {
  margin-left: 5px;
  transition: 0.3s ease;
}
.tab-pane .col-md-6 .drone-tech-card img {
  min-height: 270px;
}
.tab-pane .col-md-4 .drone-tech-card img {
  min-height: 250px;
}
.blog-box {
  padding: 25px 0;
}
.blog-box .img-box {
  width: 50px;
  margin-right: 10px;
  /* height: 70px; */
  /* border-radius: 50%; */
  /* overflow: hidden; */
}
.blog-box .img-box img {
  width: 100%;
  overflow: hidden;
  border: 1px solid #000000;
  padding: 3px;
  border-radius: 8px;
  transition: 0.3s ease all;
}
.blog-box:hover .img-box img {
  scale: 1.05;
}
.blog-box .blog-text {
  width: calc(100% - 120px);
  padding-left: 10px;
}
.blog-box .blog-text h5 {
  font-size: 14px;
  font-weight: 600;
}
.blog-box .blog-text h5 small {
  color: #ccc;
  margin-left: 15px;
  display: inline-block;
}
.blog-box .blog-text p {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.3;
  font-weight: bold;
  margin: 0;
}
.latest-blog {
  background: #f5f5f5;
  padding: 40px 20px;
  border-radius: 10px;
  position: sticky;
  top: 90px;
}
.blog-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 10px;
}
.blog-item:last-child {
  border-bottom: none;
}
.blog-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--link-color);
  margin-right: 10px;
  line-height: 1;
}
.blog-content {
  flex: 1;
  padding-right: 10px;
}
.blog-content h6 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}
.blog-content h6:hover {
  color: var(--link-color);
  cursor: pointer;
}
.blog-category {
  font-size: 12px;
  color: var(--link-color);
  font-weight: 600;
  text-transform: uppercase;
}
.blog-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.blog-details {
  background: #f4f8fb;
}
.blog-details img {
  transition: 0.3s ease all;
}
.blog-details:hover img {
  scale: 1.1;
}
.blog-details .blog-details-text h5 {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}
.blog-details .blog-details-text p {
}
.blog-details .blog-details-text .date {
  padding-top: 25px;
  position: relative;
  font-size: 14px;
  color: #acacac;
}
.blog-details .blog-details-text .date span {
  margin-left: 20px;
  display: inline-block;
}
.blog-details .blog-details-text .date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 1px;
  background-color: #000;
}
.single-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.single-img span {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--link-color);
  color: #fff;
  padding: 5px 20px;
}

/* course section  */
.slider-section {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease-in-out;
}

/* .slider-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    } */

.slider-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
}

.slider-item {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  height: 100vh;
  border-right: 1px solid #fff;
  display: grid;
  text-align: left;
  align-content: space-between;
}
.slider-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: #090782d8;
  transition: 0.5s ease all;
}
.slider-item:hover::before {
  height: 100%;
}
.slider-item h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  transition: 0.3s ease all;
  translate: 0 10px;
}
.slider-item:hover h5 {
  opacity: 0;
  translate: 0 0px;
}
.slider-item h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: 0.3s ease all;
  translate: 0 15px;
}
.slider-item p {
  display: none;
  color: #fff;
  position: relative;
  z-index: 1;
}
.slider-item:hover h2,
.slider-item:hover h4 {
  opacity: 1;
  translate: 0 0;
}
.slider-item:hover p {
  display: block;
}
.slider-item h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  translate: 0 15px;
  transition: 0.3s ease all;
}

.slider-item .arrow {
  display: inline-block;
  margin-top: 15px;
  font-size: 24px;
  transition: transform 0.3s;
}

.slider-item:hover .arrow {
  transform: rotate(-30deg);
}

/* end course section  */
.page-header {
  padding: 0 50px;
}
.page-header .container-xxl {
  padding: 100px 30px;
  background: var(--primary);
  border-radius: 12px;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}
.page-header .page-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ff9100, var(--link-color));
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 5px 40px 40px 5px;
  font-size: 16px;
  margin-bottom: 20px;
}
.page-header .page-label i {
  font-size: 24px;
  margin-right: 10px;
}

#myModal .btn-close,
.btn-close {
  position: absolute;
  right: -15px;
  top: -15px;
  opacity: 1;
  padding: 8px;
  border-radius: 4px;
  z-index: 999;
}
.cursor-pointer {
  cursor: pointer;
}
/*** Facts ***/
.facts-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
}

.facts-overlay h1 {
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
  color: var(--primary) !important;
}

/*** Service ***/

.service-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.service-item img {
  width: 100%;
}
.service-item .service-text {
  background: var(--primary);
}
.service-item .service-text b {
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
}
.service-item .service-text p,
.service-item .service-text li,
.service-item .service-text b {
  font-size: 14px;
}

.service-item .service-text * {
  color: #ffffff !important;
}
.service-item .service-text li {
  color: #cfd3f5 !important;
}
/* Flash effect */
.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40px;
  height: 55%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(20px);
}
.service-item:hover::after {
  animation: flash 1.4s ease-in-out;
}

@keyframes flash {
  0% {
    left: -40%;
  }
  100% {
    left: 125%;
  }
}

/* course list  */
.improve-knowladge {
  padding: 100px 0;
  background-image: url(../img/home/cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.improve-knowladge form {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  max-width: 920px;
  box-sizing: border-box;
  padding: 45px;
}
.improve-knowladge form .form-control {
  border: 1px solid #fff !important;
  padding: 12px 15px !important;
  background: transparent !important;
  color: #fff !important;
  border-radius: 10px;
}
.improve-knowladge form .form-control::placeholder {
  color: #e0e0e0;
}
.improve-knowladge form .form-control option {
  color: #000 !important;
}
.course-list {
  /* border: 1px solid #3c437b; */
  /* box-shadow: 0 0px 10px rgba(95, 95, 95, 0.1); */
  border-radius: 70px;
  padding: 30px;
  margin-bottom: 30px;
  background: var(--light);
}

.course-list .list-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

.course-list .icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark);
}
.course-list .icon-text i {
  color: var(--dark);
  font-size: 25px;
}
.course-list .register-btn {
  background: linear-gradient(to right, #ff9100, #ffd24d);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
}

.course-list .course-info {
  margin-top: 10px;
}
/* course list end */

/* traning-program */

.traning-program .program-text {
  position: relative;
  padding-left: 35px;
}
.traning-program .program-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.traning-program .program-text h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
/* end traning-program */
/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-text {
  position: absolute;
  width: 75%;
  bottom: 30px;
  left: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  width: 100%;
}

.team-text * {
  transition: 0.5s;
}

.team-item:hover .team-text * {
  letter-spacing: 2px;
}

/*** Testimonial ***/
.owl-item img {
}

.owl-nav {
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light) !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  transition: 0.5s;
  background: var(--link-color) !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
}
.owl-nav .owl-prev {
  left: -30px !important;
}
.owl-nav .owl-next {
  right: -30px !important;
}
.testimonial-card {
  min-height: 360px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-top: 3px solid var(--link-color);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card .testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}
.testimonial-card .star-rating i {
  color: #ffc107;
  font-size: 18px;
}
.testimonial-card .user-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.testimonial-card .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.testimonial-card .user-info h6 {
  margin: 0;
  font-weight: 600;
}
.testimonial-card .user-info small {
  color: #777;
}

/*** Footer ***/
.footer {
  background-color: #0a1229;
  color: #fff;
  padding: 50px 0 20px;
}
.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer a,
.footer p {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer .social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}
.subscribe-box input {
  border: none;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  outline: none;
  /* background: #1f2937; */
}
.subscribe-box button {
  border: none;
  background-color: var(--primary);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #bbb;
}
.back-to-top {
  background: var(--primary);
  color: #fff;
}
.back-to-top:hover {
  background: var(--link-color);
  color: #fff;
}
.serice-details-box {
  background-color: #a0251f;
  padding: 20px;
  height: 100%;
  min-height: 250px;
}
.serice-details-box h6 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.serice-details-box p {
  color: #fff;
  text-align: center;
}
.why-choose-us {
  padding: 100px 0;
  /* background: linear-gradient(to right, var(--primary), var(--link-color)); */
}
.key-features {
  background: var(--primary);
  border-radius: 15px;
  padding: 20px;
}
.key-features-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  border: 3px solid #c0c0c0;
  padding: 5px;
  background: #fff;
}
.mission-box {
  text-align: center;
  background-color: #182333a8;
  color: #fff;
  padding: 56px 30px;
  border-radius: 50% 50% 0 0;
  height: 350px;
  display: grid;
  place-items: start;
}
.mission-box h4 {
  color: #fff;
}
.mission-box.center {
  text-align: center;
  background-color: #0f88b7a1;
  color: #fff;
  border-radius: 0 0 50% 50%;
  place-items: end;
  margin-top: -60px;
}
.efficiancy {
  background-color: var(--link-color);
  border-radius: 150px;
  padding: 40px 50px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.efficiancy li {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  text-align: center;
  width: calc(100% / 5);
}
.efficiancy li span {
  font-size: 45px;
}
.tab-section .drone-img {
  scale: 1.1;
  transform-origin: left;
  position: relative;
  z-index: 9;
}
.core-values {
  padding: 70px 0;
  background: var(--link-color);
}
.drone-types {
  padding: 70px 0;
}
.drone-types .col-lg-5 div {
  position: sticky;
  top: 100px;
}
.drone-box {
  border-radius: 15px;
  padding: 20px;
  background: var(--primary);
  display: flex;
}
.drone-box:nth-child(even) {
  background: var(--secondary);
}
.drone-box .text {
  width: calc(100% - 80px);
}
.drone-box h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.drone-box h6 {
  font-size: 16px;
  color: #cfd3f5;
}
.drone-box p {
  font-size: 14px;
  color: #cfd3f5;
}
.drone-box ul {
  padding-left: 1rem;
  margin-bottom: 0;
}
.drone-box ul li {
  font-size: 14px;
  color: #cfd3f5;
}
.drone-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
  padding: 5px;
}
.drone-box .icon img {
  width: 100%;
}
.drone-work {
  padding: 70px 0;
  position: relative;
  background-color: #f2f2f2;
}
.work-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  /* box-shadow: 0 0 10px #fff; */
}
.work-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: var(--link-color);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}
.build-section {
  padding: 70px 0;
  background: var(--primary);
  color: #fff;
}
.build-section .build-text {
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--secondary);
  background: #fff;
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
.build-section .build-text.second {
  background: var(--link-color);
}
.build-section .btn {
  box-shadow: 0 0 0 2em var(--dark) inset;
}
.build-section .btn:hover {
  background: var(--link-color) !important;
  box-shadow: none;
}
.service-banner {
  padding: 0 50px;
  position: relative;
}
.service-banner .container-xxl {
  border-radius: 30px;
  overflow: hidden;
}
.service-banner .container-xxl .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000003d;
  display: grid;
  place-items: center;
  padding: 20px 100px;
}
.service-banner .container-xxl .overlay h2 {
  color: #fff;
}
.service-banner .service-banner-video {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}
.all-service {
  /* padding: 70px 0; */
}
.all-service .row {
  position: relative;
  background: var(--light);
}
.all-service .row:after {
  /* content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(75% at 0% 50%);
  background: var(--link-color); */
}
.all-service .row > * {
  position: relative;
  z-index: 9;
}
.all-service .row:nth-child(odd)::after {
  right: 0;
  left: inherit;
  clip-path: circle(75% at 100% 50%);
}
.all-service .row:nth-child(odd) .page-heading,
.all-service .row:nth-child(odd) p,
.all-service .row:nth-child(odd) ul li,
.all-service .row:nth-child(odd) h5 {
  /* color: #fff; */
  font-size: 14px;
}
.all-service .row:nth-child(odd) .page-heading span {
  color: var(--secondary);
}
.all-service .row img,
.all-service .row video {
  /* border-radius: 30px; */
}
.cta {
  padding: 100px 10px;
  background: var(--primary);
}
.cta h1 {
  color: #fff;
}
.cta a.btn {
  box-shadow: 0 0 0 2em #fff inset;
  color: #000;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
}
.cta a.btn:hover {
  box-shadow: none;
  color: #fff;
}
.contact-details p {
  display: flex;
  align-items: center;
}
.contact-details p i {
  font-size: 20px;
  margin-right: 10px;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
}
.contact-details p span {
  width: calc(100% - 60px);
}
.contact-details .social-icons {
}
.social-icons a {
  color: #fff;
  background: #1f2937;
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.3s ease all;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
}
.social-icons a:hover {
  color: #fff;
  background: var(--primary);
  translate: 0 -5px;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 15px;
}
.contact-form .form-group::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #858585;
  z-index: 1;
}
.contact-form .form-group i {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--secondary);
  font-size: 20px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 12px 20px 10px 40px;
  border: 0;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}
.navbar-toggler-icon {
  height: auto !important;
  width: auto !important;
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.bg-green-50 {
  background-color: #f0fdf4;
  color: #26a65b;
}
.bg-blue-50 {
  background-color: #eff6ff;
  color: #2563eb;
}
.bg-purple-50 {
  background-color: #faf5ff;
  color: #9333ea;
}
.bg-orange-50 {
  background-color: #fff7ed;
  color: #f15a24;
}
.bg-danger-50 {
  background-color: #fef2f2;
  color: #ef4444;
}
.bg-warning-50 {
  background-color: #fefce8;
  color: #ca8a04;
}

.flight-scroll {
  background-color: red;
  color: #fff;
  overflow: hidden;
  padding: 90px 0;
}
.flight-scroll .flight-left .button-enquire {
  border-radius: 25px;
  background-color: #fff;
  color: #78155b;
  display: inline-block;
  margin: 15px 0;
  font-weight: bold;
  padding: 10px 27px;
  border: 1px solid #fff;
}
.flight-scroll .flight-right {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  margin-top: -12rem;
  margin-bottom: -12rem;
  display: flex;
  position: relative;
}
.flight-scroll .flight-right .flight {
  border: 2px dashed #fff f;
  border-radius: 50%;
  width: 20%;
  height: 20%;
  position: absolute;
  animation: rotate linear infinite;
  animation-duration: 10s;
  transition: all ease;
}
.flight-scroll .flight-right .is-1 {
  opacity: 0.5;
  width: 0%;
  height: 0%;
}
.flight-scroll .flight-right .is-2 {
  opacity: 0.4;
  border-radius: 50%;
  width: 25%;
  height: 25%;
}
.flight-scroll .flight-right .is-3 {
  opacity: 0.3;
  width: 50%;
  height: 50%;
}
.flight-scroll .flight-right .is-4 {
  opacity: 0.2;
  width: 75%;
  height: 75%;
}
.flight-scroll .flight-right .is-5 {
  opacity: 0.1;
  width: 100%;
  height: 100%;
}
.flight-scroll .flight-right .is-visible-tablet {
  display: none;
}
.flight-scroll .flight-right .flight-line-vertical {
  border-left: 2px dashed #fff;
  transform-origin: 50% 100%;
  position: absolute;
  top: 5%;
  bottom: 50%;
}
.flight-scroll .flight-right .flight-line-horizontal {
  border-bottom: 2px dashed #fff;
  transform-origin: 100%;
  position: absolute;
  right: 5%;
  left: 50%;
}
.flight-scroll .flight-right .flight-image {
  z-index: 1;
  width: auto;
  height: 20%;
  position: relative;
  transform: rotate(180deg);
  animation: flight 5s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flight {
  0% {
    scale: 0.4;
    left: 0;
    top: 0;
  }
  25% {
    scale: 0.6;
    left: 70px;
    top: 0;
  }
  50% {
    scale: 0.7;
    left: 150px;
    top: 0;
  }
  75% {
    scale: 0.9;
    left: 200px;
    top: 0;
  }
  100% {
    scale: 1;
    left: 230px;
    top: 0;
  }
}

.usp-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.arrow-shape {
  background: linear-gradient(135deg, #ffffff 0%, #0f88b7 100%);
  position: relative;
  padding: 40px 120px 40px 50px;
  /* margin-right: 80px; */
  clip-path: polygon(
    0 33%,
    60% 31%,
    60% 0%,
    100% 50%,
    60% 100%,
    60% 72%,
    0 73%
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-text {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  white-space: nowrap;
}

.features-list {
  list-style: none;
  display: inline-block;
  list-style: disc;
  margin-left: 50px;
  text-align: left !important;
}

.feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-item h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feature-item p {
  color: #495057;
  margin: 0;
  font-size: 0.95rem;
}

.drone-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  opacity: 0.1;
  z-index: 1;
}

.drone-illustration {
  text-align: center;
  position: relative;
}

.drone-svg {
  width: 280px;
  height: 180px;
  margin: 20px 0;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #003d80;
  font-weight: 700;
}

.common-cta {
  padding: 100px 0;

  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/about/cta-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-padding {
  padding: 100px 0;
}

.common-gradient-bg {
  background: linear-gradient(187deg, #090782db 0%, #0f88b7 100%);
}
.common-gradient-bg2 {
  background: linear-gradient(180deg, #090782db 7%, #0f88b7 100%);
  border: 0;
}
.common-gradient-bg .course-title,
.common-gradient-bg .course-desc {
  color: #fff !important;
}
.section-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.scheme-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.scheme-card img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.scheme-card .card-body {
  padding: 20px;
  flex: 1;
  position: absolute;
  background-image: linear-gradient(
    0deg,
    var(--link-color) 78%,
    #01272566 93%,
    #01272500
  );
  color: #fff;
  bottom: calc(-100% + 80px);
  transition: 0.5s ease all;
  height: 100%;
  display: grid;
  align-content: space-between;
}
.scheme-card h5 {
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  height: 50px;
}
.scheme-card p strong {
  color: #fff;
}
.scheme-card ul {
  padding-left: 20px;
}
.scheme-card p,
.scheme-card ul li {
  font-size: 0.9rem;
  color: #fff;
}
.scheme-card:hover .card-body {
  bottom: 0;
  background: var(--link-color);
}
.scheme-card:hover .card-body h5 {
  /* display: none; */
}
.contact-section {
}
.training-strip {
  background: var(--primary);
  padding: 50px 0;
}
.training-strip p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.training-type {
  position: relative;
  padding: 70px 0 0;
  overflow-x: hidden;
}

.course-wrapper {
  padding: 70px 0;
  background: #000;
}
.course-card2 {
  background: linear-gradient(135deg, var(--primary) 0%, #0000cd 100%);
  border-radius: 100px;
  padding: 30px 40px;
  margin-bottom: 30px;
  color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 139, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card2:hover {
  transform: translateY(-5px);
}

.course-card2 .course-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.course-card2 .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}

.course-card2 .info-row:last-child {
  margin-bottom: 0;
}

.course-card2 .icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.course-card2 .icon i {
  filter: brightness(0) invert(1);
}
.course-wrapper .table-bordered > :not(caption) > * > * {
  padding: 22px !important;
  color: #000;
}
.course-wrapper .table {
  background: #fff;
}
.course-card3 {
  background: var(--link-color);
  overflow: hidden;
  border-radius: 30px;
}
.course-card3 > * {
  color: #fff;
}
.course-card3 h3,
.course-card3 h5 {
  color: #fff;
}
.course-card3 .col-lg-6 img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.tab-section .course-card3 .col-lg-6 img {
  height: 430px;
}
.common-cta2 {
  background: var(--primary);
}
.ad-hero-section .bt {
  padding: 15px 30px;
  color: var(--primary);
  margin-bottom: 20px;
  border-radius: 50px;
  background-color: #fff;
  width: 500px;
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto 20px;
}

.drone-type {
  padding: 70px 0;
}
.drone-type .drone-card {
  position: relative;
  margin-bottom: 20px;
  overflow: visible;
}

.drone-type .blue-section {
  background: var(--primary);
  border-radius: 0 150px 150px 0;
  padding: 20px 40px;
  color: white;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-right: 50px;
}

.drone-type .light-blue-section {
  background: var(--link-color);
  border-radius: 150px 0 0 150px;
  padding: 20px 40px;
  color: #000;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-left: 80px;
}

.drone-type .drone-card h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.drone-type .drone-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.drone-type .drone-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #fff;
}

.drone-type .drone-card ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #fff;
}

.drone-type .drone-card ul li {
  margin-bottom: 4px;
}
.drone-work {
  padding: 80px 0;
  background: linear-gradient(180deg, #feffff, #0f88b778);
}
.drone-work .drone-work-box {
}
.drone-work .drone-work-box .icon {
  width: 55px;
  height: 55px;
  border: 0px solid #000;
}
.drone-work .drone-work-box .text {
  width: calc(100% - 80px);
  padding-left: 10px;
}
.drone-design {
  background: #f2f2f2;
}
.common-gradient-bg2 {
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
}
.common-gradient-bg2 .course-title {
  font-size: 22px;
  color: #fff;
}
.mission-vision-box {
  background-image: url(../img/home/training-2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.cpac-section {
  position: relative;
  background-image: url(../img/plane-banner.webp);
  /* background-color: var(--link-color); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cpac-section .clogo {
  position: absolute;
  top: 100px;
  right: 40px;
  width: 200px;
}
.cpac-section a {
  background: #00000059;
  display: block;
  padding: 80px 0;
}
.cpac-section p {
  color: #fff;
  font-size: 20px;
}
.about-section {
  padding: 80px 0;
}
.about-section .about-thumb-inner {
  position: relative;
}
.about-section .about-thumb-inner .animate-img-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-section .about-thumb-inner .video-play-btn-hover {
  position: absolute;
  right: 10px;
  top: 60px;
}
.top_image_bounce {
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
  animation: top-image-bounce 3s infinite ease-in-out;
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.counter-box {
  position: relative;
}
.counter-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #000;
}
.counter-box p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}
.divider {
  border-left: 2px solid #ccc;
  height: 48px;
  margin: 25px auto 0;
}

.about-learn-more-section {
  /* padding: 100px 0;
  background-image: url(https://images.unsplash.com/photo-1640605171728-0d58d911b022?q=80&w=725&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  position: relative;
}
.about-learn-more-section video {
  filter: brightness(0.3);
  height: 90vh;
  object-fit: cover;
}
.about-learn-more-section .container {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 9;
}
.about-learn-more-section p {
  color: #fff;
  font-size: 22px;
  /* font-weight: 300; */
}
.company-team-section {
  padding: 80px 0;
}
.company-team-section .team-message .msg {
  font-size: 20px;
  font-weight: 300;
}
.company-team-section .team-message .name,
.company-team-section .team-message .position {
  font-size: 17px;
}
.company-team-section .team-message .position {
  font-weight: 300;
}
.company-team-section .nav-control {
  position: absolute;
  bottom: 30px;
  right: 20px;
}
.company-team-section .nav-control button {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid var(--link-color);
  color: var(--link-color);
  display: inline-grid;
  place-items: center;
  background: transparent;
}
.company-team-section .nav-control button:hover {
  background: var(--link-color);
  color: #fff;
}
.course-new-box2 > * {
  transition: 0.5s ease all;
}
.course-new-box2 .img-box {
  overflow: hidden;
  border-radius: 15px;
}
.course-new-box2 .img-box img {
  transition: 0.8s ease all;
}
.course-new-box2 .text-box div {
  position: relative;
}
.course-new-box2 .text-box div i {
  position: absolute;
  top: 0px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--dark);
  font-size: 22px;
  transition: 0.8s ease all;
}
.course-new-box2 .text-box div .bi-arrow-up::before {
  scale: 2.2;
  transition: 0.8s ease all;
  rotate: 45deg;
}
.course-new-box2:hover .img-box img {
  scale: 1.2;
}
.course-new-box2:hover .text-box div .bi-arrow-up::before {
  scale: 1;
}
.course-new-box2:hover .text-box div i {
  background: var(--link-color);
  color: #fff;
  scale: 1;
}
.course-new-box2:hover .text-box h3,
.course-new-box2:hover .text-box p {
  color: var(--link-color);
}
.course-new-box {
  background: var(--link-color);
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
}
.course-new-box .row {
  align-items: center;
}
.course-new-box .img-box img {
  transition: 0.8s ease all;
  height: 500px;
  object-fit: cover;
  padding-right: 30px;
  object-position: center;
}

.why-choose-wrapper {
  padding: 100px 0;
}
.why-choose-wrapper .choose-box {
  background: #fff;
  border-radius: 12px;
  padding: 70px 30px 40px;
  position: relative;
  height: 100%;
  transition: 0.3s ease all;
  box-shadow: 0 1px 9px 0 rgb(0 0 0 / 9%);
  border: 1px solid #cbcbcb;
  text-align: center;
  overflow: hidden;
}
.why-choose-wrapper .choose-box .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  background: var(--link-color);
  color: #fff;
  font-size: 20px;
  border-bottom-right-radius: 15px;
}
.why-choose-wrapper .choose-box img {
  height: 90px;
  margin-bottom: 40px;
}
.why-choose-wrapper .choose-box .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.5;
}
.why-choose-wrapper .choose-box:hover {
  background: var(--link-color);
  border-color: var(--link-color);
}
.why-choose-wrapper .choose-box:hover .title {
  color: #fff;
}
.why-choose-wrapper .choose-box:hover img {
  filter: invert(1);
}
.why-choose-wrapper .choose-box:hover .number {
  background: #fff;
  color: var(--link-color);
}
.registration-process {
  padding: 70px 0;
  background: var(--light);
}
.registration-process .item {
  padding: 15px 10px;
}
.registration-process .reg-box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 1px 9px 0 rgb(0 0 0 / 9%);
}
.registration-process .reg-box img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.registration-process .reg-box h5 {
  color: var(--primary);
  text-align: center;
  font-size: 15px;
}

.featured-left .badge {
  background: var(--link-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  border-radius: 0;
  color: #fff;
}

.featured-left h2 {
  font-weight: 700;
  font-size: 40px;
  margin: 20px 0;
}

.featured-left p {
  color: #ffffffbd;
  line-height: 1.7;
  max-width: 400px;
}

.enroll-btn {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 12px 35px;
  font-weight: 600;
  margin-top: 40px;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: #007bff;
  color: #fff;
}
.featured-left {
  position: sticky;
  top: 100px;
}
.mt-200 {
  margin-top: 200px;
}
.project-card {
  margin-bottom: 40px;
}

.project-card img {
  width: 100%;
  /* border-radius: 10px; */
  margin-bottom: 15px;
}

.project-card h5 {
  font-weight: bold;
  color: #fff;
}

.project-card ul {
  padding-left: 16px;
  color: #ffffffbd;
}
.project-card ul b {
  color: #fff;
}

.image-hover-rotate p {
  font-size: 12px;
  margin-bottom: 0;
}
.service-wrapper {
  scroll-behavior: smooth;
  position: relative;
  /* min-height: 80vh; */
}
.all-service:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
  transition: 0.3s ease all;
}
/* 
#section1 {  
  z-index: 0;
}
#section2 {  
  z-index: 1;
}
#section3 {  
  z-index: 2;
}
#section4 {  
  z-index: 3;
}
#section5 {  
  z-index: 4;
}
#section6 {  
  z-index: 5;
}
 */

@media screen and (max-width: 991px) {
  .page-header,
  .hero-section {
    padding: 16px;
    min-height: 100% !important;
    margin-top: 90px;
  }
  .hero-section h2 {
    font-size: 2rem;
  }
  .hero-section video {
    height: auto;
  }
  .hero-heading {
    font-size: 40px;
  }
  .hero-section .container-xxl {
    padding: 30px;
  }
  .page-heading {
    font-size: 40px;
  }
  .service-banner {
    padding: 0 15px;
  }
  .service-banner .service-banner-video {
    height: 50vh;
  }
  .navbar .navbar-nav .nav-link {
    margin: 2px 0px !important;
  }
  .navbar .navbar-nav {
    border-top: 0px !important;
  }
  .cpac-section p {
    font-size: 15px !important;
  }
  .course-new-box .img-box img {
    padding-right: 0;
    height: auto;
    width: 100%;
  }
  .course-new-box .text-box {
    padding: 20px;
  }
  .featured-left {
    margin-bottom: 50px;
  }
  .enroll-btn {
    margin-top: 25px;
  }
  .about-learn-more-section p {
    font-size: 22px;
  }
  .arrow-container {
    flex-direction: column;
    text-align: center;
  }

  .arrow-shape {
    clip-path: none;
    border-radius: 15px;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
    max-width: 300px;
  }

  .drone-svg {
    width: 200px;
    height: 130px;
  }
  .training-type {
    overflow: inherit;
  }
  .featured-left.mt-200 {
    margin-top: 0;
  }
  .featured-left p {
    max-width: 100%;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    position: inherit !important;
    translate: 0 0 !important;
  }
  .choose-img-box {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form .form-group i {
    font-size: 18px;
  }

  .contact-form .form-group input,
  .contact-form .form-group textarea {
    padding: 10px 15px 8px 35px;
  }
  .navbar-brand img {
    width: 150px;
  }
  .course-list {
    border-radius: 20px;
  }
  .course-list .register-btn {
    width: auto !important;
  }
  .stat-item {
    padding: 0 10px;
  }
  .click-here {
    margin-left: 0;
  }
  .page-header .container-xxl {
    padding: 40px 15px;
  }
  .page-header .page-label {
    padding: 2px 15px;
    font-size: 12px;
  }
  .page-header .container-xxl .display-3 {
    font-size: 30px !important;
  }
  .page-header .container-xxl h4 {
    font-size: 16px !important;
  }
  .service-banner .container-xxl .overlay h2 {
    color: #fff;
    font-size: 17px;
    font-weight: normal;
  }
  .service-banner .container-xxl .overlay {
    padding: 15px;
  }
  .all-service {
    padding: 40px 15px;
  }
  .drone-work,
  .drone-types,
  .build-section {
    padding: 40px 0;
  }
  .key-features-header .page-heading {
    font-size: 22px;
  }
  .key-features-header img {
    width: 60px;
    height: 60px;
  }
  .hero-info-section {
    padding: 45px 20px;
  }
  .efficiancy {
    flex-wrap: wrap;
    border-radius: 20px;
  }
  .ad-hero-section li {
    width: calc(100% / 2);
  }
  .drone-type .blue-section {
    border-radius: 0 0px 0px 0 !important;
    padding: 20px !important;
  }
  .drone-type .light-blue-section {
    border-radius: 0px 0 0 0px !important;
    padding: 20px !important;
  }
  .cpac-section .clogo {
    top: 10px;
    right: 10px;
    width: 100px;
  }
  .about-section .animate-img-4 {
    width: 50%;
  }
  /* .about-learn-more-section video {
    min-height: 70vh;
  } */
  .training-type {
    padding-top: 40px;
  }
  .mt-200 {
    margin-top: 0;
  }
  .project-card {
    margin-bottom: 20px;
  }
  .common-cta {
    padding: 50px 0;
  }
  .arrow-text {
    font-size: 1.8rem;
  }

  .feature-item {
    padding: 0px;
  }

  .usp-section {
    padding: 40px 0;
  }
  .owl-nav .owl-next {
    right: 0px !important;
  }
  .owl-nav .owl-prev {
    left: 0px !important;
  }
  .latest-blog {
    padding: 20px;
  }
  .improve-knowladge {
    padding: 50px 0;
  }
}
@media screen and (max-width: 576px) {
  .hero-heading {
    font-size: 20px !important;
    margin: 0;
  }
  .course-wrapper {
    padding: 30px 0 !important;
  }
  .all-service .row:nth-child(odd)::after {
    clip-path: circle(90% at 100% 50%) !important;
  }
  .all-service .row:after {
    clip-path: circle(90% at 0% 50%) !important;
  }
  .course-card2 .course-title {
    font-size: 24px !important;
  }
  .course-card2 {
    border-radius: 30px !important;
  }
  .drone-type .drone-card h2 {
    font-size: 24px !important;
  }
  .page-heading {
    font-size: 24px !important;
  }
  .service-banner .container-xxl .overlay h2 {
    font-size: 14px !important;
  }
  .slider-content {
    display: block !important;
  }
  .slider-item {
    height: 60vh !important;
  }
  .hero-section {
    margin-top: 60px !important;
    min-height: 100% !important;
  }
  .hero-section h2 {
    font-size: 1.2rem !important;
  }
  .mission-vision-box {
    padding: 30px 0 !important;
  }
  .arrow-shape {
    max-width: 100% !important;
    text-align: center !important;
    padding: 15px !important;
    min-height: 100px !important;
  }
  .hero-section video {
    height: auto !important;
  }
  .main-hero-section video {
    height: 50vh !important;
  }
  .drone-tech-card-text h5 {
    font-size: 20px !important;
  }
  .mission-box.center {
    margin-top: 0px !important;
  }
  .choose-img-box-inner2 {
    left: 0px !important;
    bottom: -20px;
  }
  .choose-img-box-inner3 {
    left: inherit;
    right: 10px;
  }
  .choose-img-box-inner1 {
    right: 10px !important;
  }
  .why-choose-us,
  .drone-work,
  .drone-type {
    padding: 35px 0 !important;
  }
  .section-padding {
    padding: 35px 0 !important;
  }
  .efficiancy {
    flex-wrap: wrap;
    display: block !important;
    border-radius: 20px;
  }
  .efficiancy li {
    width: calc(100% / 1) !important;
  }
  .ad-hero-section .bt {
    width: 100% !important;
    border: 1px solid #ddd !important;
    padding: 8px 20px !important;
    font-size: 16px !important;
    margin: 0 auto 10px !important;
  }
  section.hero-section.ad-hero-section {
    height: 100% !important;
    min-height: 100%;
  }
  section.hero-section.ad-hero-section .carousel-caption {
    position: relative;
    top: 0 !important;
    translate: 0;
    bottom: inherit !important;
    left: 0;
    right: 0;
    text-align: center;
  }
  .hero-heading {
    font-size: 24px !important;
    color: #000;
    text-shadow: none !important;
  }
  .improve-knowladge form {
    padding: 16px;
  }
  .about-section .main-img {
    width: 80%;
  }
  .about-learn-more-section p {
    font-size: 18px;
  }
  #myModal .btn-close,
  .btn-close {
    right: 5px;
    top: 5px;
    border: 1px solid #000;
    filter: invert(0);
    border-radius: 50%;
  }
  .hero-section .carousel-caption {
    width: 100%;
    right: 0;
    left: 0;
    padding: 0 14px;
  }
  .hero-section .carousel-caption h2 {
    margin: 0 !important;
  }
  .choose-img-box-inner1,
  .choose-img-box-inner3 {
    padding: 5px 10px !important;
  }
  .choose-img-box-inner1 h4,
  .choose-img-box-inner3 h4 {
    font-size: 18px;
  }
  .choose-img-box-inner1 p,
  .choose-img-box-inner3 p {
    font-size: 12px;
  }
  .choose-img-box-inner small {
    font-size: 12px;
  }
  .about-learn-more-section video {
    height: 100vh;
  }
}
