@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "Poppins";
  height: 100%;
  scroll-behavior: auto !important;
}

.section-title {
  margin-bottom: 30px;
}
.section-title h3 {
  font-size: 42px;
  color: #000;
  font-weight: 600;
}
.section-title p {
  font-size: 16px;
}

.cta-btn {
  display: inline-block;
  background: #FACC15;
  color: #000;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
}
.cta-btn:hover {
  background: #fff;
  color: #FACC15;
  border: 1px solid #FACC15;
}

#aviation-hero {
  position: relative;
  padding: 52px 0;
  background: url("../images/banner-image.png") no-repeat left center;
  background-size: cover;
  background-color: #f4f6fb;
  overflow: hidden;
  /* LOGO (TOP LEFT PERFECT) */
}
#aviation-hero .hero-header {
  position: absolute;
  top: 52px;
  left: calc((100% - 1200px) / 2);
}
#aviation-hero .hero-header img {
  height: 60px;
  display: block;
}
#aviation-hero {
  /* CONTENT */
}
#aviation-hero .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0F5B9A;
  line-height: 1.3;
}
#aviation-hero .hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.3;
  text-align: center;
}
#aviation-hero {
  /* FORM BOX */
}
#aviation-hero .form-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #0F5B9A;
  max-width: 460px;
  margin: auto;
  transition: all 0.3s ease;
}
#aviation-hero .form-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(47, 95, 255, 0.15);
  border-color: #1e4ed8;
}
#aviation-hero .form-box h3 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 32px;
}
#aviation-hero .form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#aviation-hero .form-box input,
#aviation-hero .form-box select,
#aviation-hero .form-box textarea {
  width: 100%;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  background: #fff;
}
#aviation-hero .form-box input:focus,
#aviation-hero .form-box select:focus,
#aviation-hero .form-box textarea:focus {
  border-color: #2f5fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(47, 95, 255, 0.1);
}
#aviation-hero .form-box textarea {
  height: 70px;
  resize: none;
  padding-top: 10px;
}
#aviation-hero .form-box button {
  background: #FACC15;
  color: #000;
  border: none;
  height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0 5px;
}
#aviation-hero .form-box button:hover {
  border: 1px solid #FACC15;
  background: #fff;
  color: #FACC15;
}
#aviation-hero {
  /* RESPONSIVE */
}
@media (max-width: 1200px) {
  #aviation-hero .hero-header {
    left: 20px;
  }
}
@media (max-width: 991px) {
  #aviation-hero {
    background-size: cover;
  }
  #aviation-hero .hero-content {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  #aviation-hero {
    text-align: center;
    padding: 60px 0;
  }
  #aviation-hero .hero-header {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }
  #aviation-hero .hero-content h1 {
    font-size: 24px;
  }
  #aviation-hero .hero-content p {
    margin: 0 auto 20px;
  }
  #aviation-hero .form-box {
    margin: 0 auto;
    padding: 24px 14px;
  }
}

#mistakes-section {
  padding: 80px 0;
  background: #ffffff;
}
#mistakes-section .left-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}
#mistakes-section .left-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
#mistakes-section .left-content .student-img {
  text-align: center;
}
#mistakes-section .left-content .student-img img {
  max-width: 180px;
}
#mistakes-section .left-content .student-img::after {
  content: "";
  display: block;
  width: 170px;
  height: 25px;
  background: #0d1b2a;
  border-radius: 20px;
  margin: 0px auto 0;
}
#mistakes-section .right-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#mistakes-section .mistake-card {
  background: #1f5f99;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
#mistakes-section .mistake-card .icon {
  color: #ffd54f;
  font-size: 16px;
}
#mistakes-section .mistake-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#mistakes-section .highlight-text {
  margin-top: 15px;
  font-size: 26px;
  font-weight: 600;
  color: #1c1c1c;
}
#mistakes-section {
  /* Responsive */
}
@media (max-width: 768px) {
  #mistakes-section {
    text-align: center;
  }
  #mistakes-section .left-content p {
    margin: 0 auto 20px;
  }
  #mistakes-section .right-content {
    margin-top: 30px;
  }
  #mistakes-section .highlight-text {
    font-size: 16px;
  }
}

#student-mistake {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#student-mistake .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}
#student-mistake .talk-btn {
  background: #2b6cb0;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  border: 2px solid #2b6cb0;
}
#student-mistake .talk-btn:hover {
  background: transparent;
  color: #2b6cb0;
}
#student-mistake .right-wrapper {
  position: relative;
  height: 514px;
  padding-right: 70px;
}
#student-mistake .right-wrapper .box-big {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
#student-mistake .right-wrapper .box-big .box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border: 1px solid #111827;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  max-width: 400px;
}
#student-mistake .right-wrapper .box-big .box span {
  color: #f4b400;
  font-weight: bold;
}
#student-mistake .right-wrapper .box-big .box p {
  font-size: 16px;
  margin: 0;
  color: #333;
}
#student-mistake .right-wrapper .image {
  position: absolute;
  right: -20%;
  bottom: 15px;
}
#student-mistake .right-wrapper .image img {
  max-height: 300px;
}

#pilot-journey {
  padding: 80px 0;
  background: #111827;
  color: #fff;
  position: relative;
}
#pilot-journey::before {
  content: "";
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: url("../images/top-icon.png") no-repeat center;
  background-size: contain;
  z-index: 2;
}
#pilot-journey::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 200px;
  height: 200px;
  background: url("../images/bottom-icon.png") no-repeat center;
  background-size: contain;
  z-index: 2;
}
#pilot-journey .section-title {
  text-align: center;
}
#pilot-journey .section-title h3 {
  color: #fff;
}
#pilot-journey .step-row {
  margin-bottom: 40px;
  position: relative;
}
#pilot-journey .step-row .image-box {
  position: relative;
  z-index: 2;
  text-align: center;
}
#pilot-journey .step-row .image-box img {
  width: 415px;
  border-radius: 10px;
}
#pilot-journey .step-row .content {
  text-align: center;
}
#pilot-journey .step-row .content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
#pilot-journey .step-row .content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}
#pilot-journey .step-row::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  /* space below row */
  width: 80%;
  height: 1px;
  background: #0d6efd;
  /* your blue color */
  opacity: 0.2;
}
#pilot-journey {
  /* Alternate side fix */
}
#pilot-journey .flex-md-row-reverse .step-number {
  left: auto;
  right: 0;
}
#pilot-journey .flex-md-row-reverse .image-box::before {
  left: auto;
  right: -40px;
  background: #facc15;
}
#pilot-journey {
  /* Responsive */
}
@media (max-width: 768px) {
  #pilot-journey {
    text-align: center;
  }
  #pilot-journey .step-row {
    margin-bottom: 50px;
  }
  #pilot-journey .step-row .step-number {
    position: static;
    display: block;
    margin-bottom: 10px;
    font-size: 50px;
  }
  #pilot-journey .step-row .image-box {
    margin: 20px auto;
  }
  #pilot-journey .step-row .image-box::before {
    display: none;
  }
  #pilot-journey .step-row .content p {
    margin: 0 auto;
  }
}

#pilot-cost {
  padding: 80px 0;
  background: url(../images/process-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
#pilot-cost .section-header {
  margin-bottom: 50px;
}
#pilot-cost .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c2b39;
  margin-bottom: 10px;
}
#pilot-cost .section-header p {
  font-size: 14px;
  color: #6c757d;
}
#pilot-cost .pilot-image img {
  border-radius: 20px;
}
#pilot-cost .cost-card {
  background: #0F5B9A;
  color: #fff;
  padding: 60px 5px;
  border-radius: 10px;
  width: 100%;
  max-width: 260px;
  min-height: 223px;
  margin: auto;
  transform: scale(1.1);
  transition: 0.3s ease;
}
#pilot-cost .cost-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 10px;
}
#pilot-cost .cost-card p {
  font-size: 20px;
  margin: 0;
  line-height: 1.5;
}

#pilot-highlight {
  position: relative;
  padding: 80px 0 80px;
  height: 100vh;
  background: url("../images/crew.jpg") no-repeat center/cover;
  /* Overlay */
}
#pilot-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 74, 0.65);
}
#pilot-highlight .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#pilot-highlight {
  /* Title */
}
#pilot-highlight .section-title {
  margin-bottom: 0px;
  text-align: center;
  color: #fff;
}
#pilot-highlight .section-title h3 {
  color: #fff;
  margin-bottom: 10px;
}
#pilot-highlight .section-title p {
  color: #fff;
}
#pilot-highlight {
  /* Row pushed to bottom */
  /* Info boxes */
}
#pilot-highlight .info-box {
  background: rgba(255, 255, 255, 0.15);
  /* transparent white */
  backdrop-filter: blur(10px);
  /* blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* for Safari */
  height: 180px;
  padding: 40px 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* subtle border */
}
#pilot-highlight .info-box h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}
#pilot-highlight .info-box p {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}
#pilot-highlight .info-box:hover {
  transform: translateY(10px);
  background: #245c8f;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#demand {
  position: relative;
  padding: 80px 0;
  background: url(../images/RunWay.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#demand .container {
  position: relative;
  z-index: 2;
}
#demand .col-md-4 {
  display: flex;
  align-items: center;
}
#demand .demonad-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#demand .demand-box {
  background: #1e4f7a;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s ease;
  display: flex;
  gap: 20px;
}
#demand .demand-box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
#demand .demand-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffc107;
}
#demand .demand-box p {
  font-size: 16px;
  line-height: 1.4;
  color: #dbe6f2;
  margin: 0;
}
#demand .demand-box:hover {
  transform: translateY(-5px);
  background: #245c8f;
}

#pilot-demand {
  padding: 60px 0 0;
  background: #f5f7fa;
}
#pilot-demand .demand-box {
  background: #0F5B9A;
  padding: 40px 50px;
  border-radius: 12px;
  color: #fff;
}
#pilot-demand .demand-box .section-title h3 {
  color: #fff;
}
#pilot-demand .demand-box .demand-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#pilot-demand .demand-box .demand-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #dbe6f2;
  margin: 0;
}
#pilot-demand .demand-box .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

#pilot-life {
  padding: 80px 0;
  background: #f5f7fa;
}
#pilot-life .life-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 15px;
}
#pilot-life .life-content .highlight {
  color: #2a7de1;
  font-weight: 600;
}
#pilot-life .life-image {
  text-align: right;
  margin-top: 0px;
}
#pilot-life .life-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
#pilot-life .section-title {
  text-align: center;
}
#pilot-life .cta-btn {
  text-transform: capitalize;
}

#testimonials {
  padding: 80px 0;
  background: #fff;
}
#testimonials .section-title h3 {
  text-align: center;
}
#testimonials .testimonial-card {
  background: #f3f4f6;
  padding: 30px 20px;
  border-radius: 12px;
  height: 100%;
  position: relative;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#testimonials .testimonial-card .quote-icon {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 40px;
  height: 40px;
}
#testimonials .testimonial-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#testimonials .testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 10px;
}
#testimonials .testimonial-card .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonials .testimonial-card .user h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1c2b39;
}
#testimonials .testimonial-card .user span {
  font-size: 14px;
  color: #8a94a6;
}
#testimonials .testimonial-card .quote {
  font-size: 30px;
  color: #9aa3af;
  font-weight: bold;
}
#testimonials .testimonial-card .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3748;
  margin: 0;
}
#testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
#testimonials .owl-carousel .owl-stage {
  display: flex;
}
#testimonials .owl-carousel .owl-item {
  display: flex;
}
#testimonials .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
#testimonials .owl-nav .owl-prev {
  left: -5%;
}
#testimonials .owl-nav .owl-next {
  right: -5%;
}
#testimonials .owl-nav button {
  width: 40px;
  height: 40px;
  background: #0F5B9A !important;
  border-radius: 50%;
  position: relative;
  font-size: 0;
  /* hide default text */
  border: none;
  opacity: 0.5;
}
#testimonials .owl-nav button:hover {
  opacity: 1;
}
#testimonials {
  /* Create arrow using ::before */
}
#testimonials .owl-prev::before,
#testimonials .owl-next::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
#testimonials {
  /* Left Arrow */
}
#testimonials .owl-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
#testimonials {
  /* Right Arrow */
}
#testimonials .owl-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#testimonials {
  /* Hover */
}
#testimonials .owl-nav button:hover {
  background: #163a5a !important;
}

#pilot-guide {
  padding: 80px 0;
  background: #f5f7fa;
}
#pilot-guide .guide-content .subtitle {
  font-size: 16px;
  color: #5f6c7b;
  line-height: 1.6;
  margin-bottom: 20px;
}
#pilot-guide .guide-content .subtitle span {
  color: #1e4f7a;
  font-weight: 600;
}
#pilot-guide .guide-content .guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
#pilot-guide .guide-content .guide-list li {
  font-size: 16px;
  color: #1c2b39;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
#pilot-guide .guide-content .guide-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e4f7a;
  font-size: 14px;
  font-weight: bold;
}
#pilot-guide .guide-content .bottom-text {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}
#pilot-guide .guide-content .bottom-text span {
  color: #0F5B9A;
  font-weight: 600;
}
#pilot-guide .guide-images {
  position: relative;
  text-align: center;
}
#pilot-guide .guide-images .img-main {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}
#pilot-guide .guide-btn {
  display: block;
  text-align: center;
}

#faq-section {
  padding: 80px 0;
  background: #f5f7fa;
  position: relative;
}
#faq-section .section-title h3 {
  text-align: center;
}
#faq-section .faq-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
#faq-section .faq-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#faq-section .faq-image-box .faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  color: #fff;
}
#faq-section .faq-image-box .faq-overlay p {
  font-size: 20px;
  color: #fff;
}
#faq-section .faq-contact {
  position: absolute;
  bottom: 15%;
}
#faq-section .faq-contact p {
  font-size: 14px;
  color: #5f6c7b;
}
#faq-section .faq-contact .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  color: #1e4f7a;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e0e6ed;
}
#faq-section .faq-contact .call-btn span {
  background: #1e4f7a;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#faq-section {
  /* Accordion Styling */
}
#faq-section .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}
#faq-section .accordion-button {
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: #1c2b39;
  box-shadow: none;
}
#faq-section .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 18px;
  color: #1e4f7a;
  font-weight: bold;
}
#faq-section .accordion-button:not(.collapsed)::after {
  content: "−";
}
#faq-section .accordion-button:not(.collapsed) {
  background: #1e4f7a;
  color: #fff;
}
#faq-section .accordion-body {
  border: 2px solid #0F5B9A;
  border-radius: 9px;
  border-top-left-radius: 0;
  color: #000;
  line-height: 1.6;
  border-top-right-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
}

#pilot-cta {
  padding: 80px 0;
  background: #f5f7fa;
}
#pilot-cta .cta-box {
  background: linear-gradient(135deg, #0f2f4a, #1e4f7a);
  border-radius: 16px;
  padding: 50px;
  overflow: hidden;
  color: #fff;
}
#pilot-cta .cta-content .tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
#pilot-cta .cta-content .section-title h3 {
  color: #fff;
}
#pilot-cta .cta-content .section-title h3 em {
  font-style: normal;
  color: #FACC15;
}
#pilot-cta .cta-content p {
  font-size: 14px;
  margin: 20px 0;
  color: #dbe6f2;
  max-width: 400px;
}
#pilot-cta .cta-content .cta-buttons {
  display: flex;
  gap: 15px;
}
#pilot-cta .cta-content .cta-buttons .btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
#pilot-cta .cta-content .cta-buttons .primary {
  background: #FACC15;
  color: #fff;
}
#pilot-cta .cta-content .cta-buttons .secondary {
  border: 1px solid #FACC15;
  color: #FACC15;
}
#pilot-cta .cta-image {
  position: relative;
  text-align: right;
}
#pilot-cta .cta-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
#pilot-cta .cta-image .live-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 12px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 250px;
  display: none;
}
#pilot-cta .cta-image .live-card .dot {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
}
#pilot-cta .cta-image .live-card strong {
  font-size: 13px;
}
#pilot-cta .cta-image .live-card p {
  font-size: 11px;
  margin: 0;
  color: #ccc;
}/*# sourceMappingURL=style.css.map */