body {
  background-color: #000;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}
a {
  text-decoration: none;
}

/* Top bar */
.top-bar_boj {
  background: #0a0a0a;
  padding: 10px 30px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
}
.top-bar_boj span {
  color: #00bfff;
  margin-right: 8px;
}

/* Header */
.header-main_boj {
  background: linear-gradient(to right, #000000, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo_boj {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo_boj img {
  height: 100px;
}

/* Desktop menu */
.menu-bar_boj {
  position: absolute;
  display: flex;
  border-image: linear-gradient(45deg, #0451af, #06acc5) 1;
  border-radius: 30px;
  overflow: hidden;
  animation: glow_boj 3s infinite alternate;
}
.menu-link_boj {
  padding: 10px 50px;
  color: white;
  font-weight: 400;
  font-size: 14px;
}
.menu-link_boj:hover {
  font-weight: 600;
}
@keyframes glow_boj {
  from { box-shadow: 0 0 5px #00bfff; }
  to { box-shadow: 0 0 20px #00bfff; }
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 35px;
  z-index: 1000;
}
.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Mobile slide-in overlay menu */
.overlay-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 2000;
  padding: 20px;
  transition: right 0.3s ease-in-out;
}
.overlay-menu.active {
  display: flex;
  right: 0;
}
.overlay-nav {
  margin-top: 60px;
  width: 100%;
}
.overlay-nav a {
  color: #ffffff;
  font-size: 20px;
  margin: 15px 0;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #00bfff;
}
.close-icon {
  align-self: flex-end;
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
}
.nav_center{
      display: flex;
  justify-content: center;

}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav_center {
    display: none;
  }

  .logo_boj img {
    height: 65px !important;
  }

  .header-main_boj {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .top-bar_boj{
      text-align: center;
  }
  }
.callus{
	margin: 5rem !important;
	width: 120px;
}
.hero h1 {
  font-size: 3rem;
}
.card1 {
    background-color: #ffffff !important;
    border: 1px solid #ffffff;
    color: #000000 !important;
}

.card2 {
  border: 2px solid #ffffff !important;
  color: #ffffff;
}
.ps-5{
	padding-top: 3rem !important;
	
}

    .aircrafts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 40px 40px;
    }
        .aircrafts_2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 40px 80px;
    }


    .aircraft-card {
      background-color: #1b1b1b;
      padding: 15px;
      border-radius: 10px;
      transition: transform 0.3s;
    }

    .aircraft-card:hover {
      transform: translateY(-5px);
    }

    .aircraft-img {
      width: 100%;
      border-radius: 8px;
    }

.aircraft-card h3 {
  background: linear-gradient(to right, #06acc5,#0451af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  margin-top: 10px;
  font-weight: 600;
}

    .view-all-btn_boj {
      margin: 40px auto;
      display: block;
      padding: 12px 32px;
      font-size: 14px;
      font-weight: 600;
      color: white;
      background: transparent;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      animation: glow_boj 3s infinite alternate;
      transition: background 0.3s;
    }


    .view-all-btn_boj:hover {
      background: rgba(0, 191, 255, 0.1);
    }
    .bg-image-wrapper {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
    .bg-image-wrapper2 {
      position: relative;
      width: 100%;
      height: 60vh;
      overflow: hidden;
    }
    .bg-image-animated {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
animation: slowZoom 10s ease-in-out infinite alternate;
      z-index: 0;
    }

    .bottom-text {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      padding-top: 60vh;
      font-family: sans-serif;
    }
    .bottom-text2{
              position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      padding-top: 10vh;
      font-family: sans-serif;
    }
    

    @keyframes slowZoom {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(1.2);
      }
    }
.label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.center_txt {
  text-align: center;
  font-size: 21px;
}

/* Responsive Form Styling */
.form {
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 3%;
}

/* Remove fixed height for better responsiveness */
@media (max-width: 768px) {
        .role_team {
text-align: left;
margin-bottom: 1rem !important;
    }
  .center_txt {
    font-size: 16px;
  }
  .container{
      width:95%;
  }
      .partners-container {
      margin-top: 0rem !important;
    }
}
.form-control:focus {
  box-shadow: none !important;
  color: white !important;
}

/* Inputs */
.contact-form input {
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  border-radius: 0;
  background-color: transparent;
  color: white;
  width: 100%;
}

.contact-form input::placeholder {
  color: #aaa;
}

input:focus {
  background-color: transparent !important;
  border-bottom: 1px solid white !important;
}

/* Submit Button */
.contact-form button {
  color: #ffffff;
  margin-top: 2%;
  border-radius: 30px;
}

/* Toggle Center */
#_boj_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

/* Toggle Pill Design */
._boj_contact .toggle-container {
  background-color: transparent;
  border: 3px solid white;
  border-radius: 9999px;
  overflow: hidden;
  display: flex;
  padding: 0;
}

/* Toggle Buttons */
._boj_contact .toggle-button {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

/* Active Toggle */
._boj_contact .toggle-button.active {
  background-color: white;
  color: black;
  border-radius: 9999px;
}

/* Responsive */
@media (max-width: 768px) {
  .statement h2 {
    font-size: 20px;
    padding: 0 15px;
  }

  ._boj_contact .toggle-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .form {
    padding: 5% 3%;
  }

  .contact-form .row > div {
    margin-bottom: 1rem;
  }
}
footer a:hover {
  text-decoration: underline;
}

/*team page css*/

    .custom-badge {
      background-color: #3a3a3a;
      font-size: 0.75rem;
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      display: inline-block;
      margin-bottom: 0.5rem;
      user-select: none;
    }
    .partners-container {
      background-color: #121212;
      border-radius: 1rem;
      padding: 2rem;
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
    }
    .team-member {
      max-width: 180px;
    }
    .linkedin-icon {
      position: absolute;
      bottom: 0.5rem;
      right: 0.5rem;
      color: #6c757d;
    }
    .linkedin-icon:hover {
      color: #adb5bd;
    }
    .name-link {
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
      font-weight: 500;
      text-align: left;
      text-decoration: none;
    }
    .name-link:hover {
      text-decoration: none;
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    }
    .position-text {
      color: #6c757d;
      font-size: 0.875rem;
      margin-top: 0.25rem;
      text-align: left;
    }
    
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

    .menu-link_boj {
      padding: 10px 20px;
      text-decoration: none;
      color: white;
      font-weight: 500;
      font-size: 14px;
      transition: background 0.3s;
    }
}

/* Aircraft Detail Page Styles */

 .boj_card {
      background-color: #111;
      border: none;
    }
      .carousel-item img{
    height: auto;
    width: 100%;
  }
    .boj_thumb {
      width: 100px;
      cursor: pointer;
      margin: 5px;
      opacity: 0.6;
      border: 2px solid transparent;
      border-radius: 5px;
    }
    .boj_thumb.active {
      opacity: 1;
      border-color: #06acc5;
    }
    .boj_thumb-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    .boj_tabs button {
      margin: 0 5px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
    }
    @media (max-width: 768px) {
  .boj_thumb-wrapper img {
    max-width: 80px;
  }
  .carousel-item img{
    height: 200px;
    width: 100%;
  }
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.spec-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.1);
}

.spec-item h4 {
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  font-size: 1rem;
  margin-bottom: 8px;
}

.spec-item p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

 .feature-item {
      text-align: center;
      padding: 30px 20px;
      background-color: #1a1a1a;
      border-radius: 8px;
      transition: all 0.3s;
    }

    .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
    }

    .feature-icon {
      font-size: 2.5rem;
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
      margin-bottom: 15px;
    }
.maintenance-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.maintenance-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #00bfff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 3px solid #06acc5;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd)::after {
  right: -10px;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-date {
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-content {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .maintenance-timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 21px;
  }
  .read_more_icon{
    
    width: 10%;
    margin-left: 12%;
}
}

.text-primary{
    
        background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 10px;
    font-weight: 600;
}
.read_more_icon{
    
        width: 10% !important;
    margin-left: 35%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .read_more_icon {
    width: 10% !important;
    margin-left: 5%;
  }
  .aircrafts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 40px 40px;
}
}

@media only screen and (min-width: 820px) and (max-width: 1108px) {
  .read_more_icon {
    width: 10% !important;
    margin-left: 5%;
  }
  .aircrafts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 40px 40px;
}
}

.tel_num{
color: #fff;
}

.copy_right_a{
    background: linear-gradient(to right, #06acc5, #0451af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Services Grid */
.services-grid {
  background-color: #000;
}

.service-square {
  display: block;
  height: 100%;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
  color: white;
  text-decoration: none;
}

.service-square:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
  border-color: #06acc5;
}

.service-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.service-content p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #06acc5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.service-square:hover .service-link {
  color: #fff;
  transform: translateX(5px);
}

/* Service Detail Sections */
.service-detail {
  position: relative;
}

.service-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 1.8rem;
  color: #06acc5;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-text p {
  color: #aaa;
}

/* Charter Cards */
.charter-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  border: 1px solid #2a2a2a;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.charter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.1);
  border-color: #06acc5;
}

.charter-icon {
  font-size: 2rem;
  color: #06acc5;
  margin-bottom: 15px;
}

.charter-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.charter-card p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Compliance Cards */
.compliance-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  border-left: 4px solid #06acc5;
  margin-bottom: 20px;
}

.compliance-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.compliance-card p {
  color: #aaa;
  font-size: 0.95rem;
}

.tagline {
  font-size: 1.2rem;
  color: #06acc5;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .service-square {
    margin-bottom: 30px;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .service-content {
    padding: 20px;
  }
  
  .charter-card, .compliance-card {
    padding: 20px;
  }
}
.wwwu-img img{
	width:90%;
	border-radius:20px
}
