/* ============================================
   GLOBAL STYLES
   ============================================ */

   body {
    background: #ffffff !important;
    font-family: 'Inter', sans-serif;
  }
  
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }
  
  .animate-smoothly {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
  }
  
  .lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .lazy-image.loaded {
    opacity: 1;
  }
  
  .lazy-image.error {
    opacity: 0.5;
    filter: grayscale(100%);
  }
  
  .company-logo {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
    transition: transform 0.3s ease;
  }
  
  .company-logo:hover {
    transform: scale(1.05);
  }
  
  
  /* ============================================
     PRELOADER
     ============================================ */
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffa9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .preloader-img {
    width: 50px;
    height: 50px;
    animation: rotation 1.5s infinite linear;
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  #preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  
  
  /* ============================================
     NAVBAR
     ============================================ */
  
     .navbar {
      background: linear-gradient(214.75deg, #000000 19.89%, #000000 80.11%);
  }
  
  .nav-company-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.639);
      color: white;
  }
  
  .nav-company-tagline {
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      font-size: 0.7rem;
      color: white;
  }
  
  .navbar-nav {
      display: flex;
      justify-content: center;
      gap: 50px;
  }
  
  .navbar-nav .nav-link {
      position: relative;
      transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: -4px;
      background-color: #981212;
      transition: width 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
      color: #f8d210;
  }
  
  .navbar-nav .nav-link:hover::after {
      width: 100%;
  }
  
  .navbar .nav-link.distinct-contact-btn {
      background: linear-gradient(214.75deg, #d62828 19.89%, #111 80.11%);
      color: #fff;
      box-shadow: -2px 9px 23.7px 0px rgba(0, 0, 0, 0.25);
      border-radius: 50rem;
      padding: 0.5rem 1.5rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
  }
  
  .navbar .nav-link.distinct-contact-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      text-decoration: none;
      color: #fff;
  }
  
  .navbar-toggler {
      border: 2px solid rgba(255, 255, 255, 0.7);
      padding: 0.5rem 0.75rem;
      background-color: rgb(255, 0, 0);
  }
  
  .navbar-toggler:focus {
      box-shadow: 0 0 0 0.25rem rgba(216, 40, 40, 0.5);
      outline: none;
  }
  
  .navbar-toggler:hover {
      background: linear-gradient(214.75deg, #8f1414 19.89%, #111 80.11%);
  }
  
  .offcanvas {
      background: linear-gradient(214.75deg, #000000 19.89%, #000000 80.11%);
      width: 300px !important;
  }
  
  .offcanvas-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .offcanvas-body .navbar-nav {
      gap: 20px;
  }
  
  .offcanvas-body .nav-link {
      padding: 0.75rem 1rem;
  }


  
  
  
  /* ============================================
     HERO SECTION (VIDEO)
     ============================================ */
  
     .hero-video-section {
      position: relative;
      height: 90vh;
      overflow: hidden;
    }
    
    .video-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
    
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.282);
      z-index: 1;
    }
    
    .hero-logo-img {
      max-height: 200px !important;
      width: auto;
      filter: brightness(1.1) contrast(1.1);
    }
    
    @media (min-width: 768px) {
      .hero-logo-img {
        max-height: 100px;
      }
    }
    
    @media (min-width: 1200px) {
      .hero-logo-img {
        max-height: 120px;
      }
    }
    
    .hero-text {
      position: absolute;
      top: 2rem;
      left: 6rem;
      z-index: 2;
      text-align: left;
      align-items: flex-start;
      max-width: 50%;
      padding: 2rem 1rem;
    }
    
    .hero-company-name {
      font-size: 4.5rem;
      font-weight: bold;
      text-align: left;
      background: linear-gradient(214.75deg, #ababab 19.89%, #ffffff 80.11%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    
    .hero-company-tagline {
      font-size: 1.8rem;
      font-weight: bold;
      text-align: left;
      background: linear-gradient(214.75deg, #ababab 19.89%, #ffffff 80.11%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    
    .hero-description1 {
      text-align: left;
      font-size: 2rem;
      font-weight: 400;
    }
    
    .hero-description2 {
      text-align: left;
      font-size: 1.5rem;
    }
    
    .hero-footer {
      position: absolute;
      bottom: 2rem;
      left: 6rem;
      z-index: 2;
      text-align: left;
    }
    
    .hero-footer .btn {
      background: linear-gradient(214.75deg, #8f1414 19.89%, #111 80.11%);
      color: white;
      padding: 20px 10px;
      text-decoration: none;
      border-radius: 6px;
      transition: transform 0.3s ease;
    }
  
    .hero-footer .btn:hover {
      transform: scale(1.05);
    }
    
    @media (max-width: 992px) {
      .hero-text {
        left: 3rem;
        top: 1.5rem;
        max-width: 60%;
        padding: 1.5rem 1rem;
      }
    
      .hero-company-name {
        font-size: 3.5rem;
      }
    
      .hero-company-tagline {
        font-size: 1.5rem;
      }
    
      .hero-description1 {
        font-size: 1.6rem;
      }
    
      .hero-description2 {
        font-size: 1.2rem;
      }
    
      .hero-footer {
        left: 3rem;
        bottom: 1.5rem;
      }
    
      .hero-footer .btn {
        padding: 18px 40px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-video-section {
        height: 100vh;
      }
    
      .hero-text {
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        max-width: 85%;
        padding: 1rem;
        text-align: center;
        align-items: center;
      }
    
      .hero-company-name {
        font-size: 3.8rem;
        text-align: center;
      }
    
      .hero-company-tagline {
        font-size: 1.3rem;
        text-align: center;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
    
      .hero-description1 {
        font-size: 1.4rem;
        text-align: center;
      }
    
      .hero-description2 {
        font-size: 1.1rem;
        text-align: center;
      }
    
      .hero-footer {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
        text-align: center;
        width: 85%;
      }
    
      .hero-footer .btn {
        padding: 16px 50px;
        width: 100%;
        /* max-width: 300px; */
      }
    }
    
    @media (max-width: 576px) {
      .hero-video-section {
        height: 90vh;
      }
    
      .hero-text {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 50%;
        padding: 0.5rem;
      }
    
      .hero-company-name {
        font-size: 3rem;
        /* line-height: 1.2; */
      }
    
      .hero-company-tagline {
        font-size: 1rem;
        line-height: 1.3;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
    
      .hero-description1 {
        font-size: 1.2rem;
      }
    
      .hero-description2 {
        font-size: 1rem;
      }
    
      .hero-footer {
        bottom: 1.5rem;
        /* width: 100%; */
      }
    
      .hero-footer .btn {
        padding: 14px 40px;
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 400px) {
      .hero-text {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    
      .hero-company-name {
        font-size: 3rem;
      }
    
      .hero-company-tagline {
        font-size: 0.9rem;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
      }
    
      .hero-footer {
        bottom: 1rem;
      }
    
      .hero-footer .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
      }
    }
  
  /* ============================================
     AIRPLANE WINDOW SECTION
     ============================================ */
     #airplane-window-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100vh;
      padding: 0 50px;
    }
    
    #airplane-window-section .content-area {
      flex: 1;
      max-width: 600px;
      color: #0a192f;
    }
    
    #airplane-window-section .content-area h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #002b5c;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    #airplane-window-section .content-area p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 18px;
    }
    
    .windows-area {
      flex-shrink: 0;
    }
    
    .window-row {
      display: flex;
      gap: 60px;
    }
    
    .window-container {
      position: relative;
      width: 300px;
      height: 450px;
      border-radius: 40% / 25%;
      box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.6);
      overflow: hidden;
    }
    
    .window-view {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("/images/windowview.png") no-repeat center center fixed;
      background-size: 800px auto;
      background-position: right center;
    }
    
    .window-frame {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 40% / 25%;
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
      pointer-events: none;
    }
    
    @media (max-width: 1200px) {
      #airplane-window-section {
        padding: 0 30px;
      }
    
      .content-area h1 {
        font-size: 2.4rem;
      }
    
      .content-area p {
        font-size: 1rem;
      }
    
      .window-row {
        gap: 40px;
      }
    
      .window-container {
        width: 220px;
        height: 330px;
      }

      .window-view {
        background-size: 585px auto; 
      }
    }
    
    @media (max-width: 768px) {
      #airplane-window-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        height: auto;
      }
    
      .content-area {
        max-width: none;
        margin-bottom: 40px;
      }
    
      .content-area h1 {
        font-size: 2rem;
      }
    
      .window-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
    
      .window-container {
        width: 250px;
        height: 350px;
      }

      .window-container:nth-child(2) {
        display: none;
      }

      .window-view {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
      }
    }
  /* ============================================
     FIND PARTS SECTION
     ============================================ */
  
  #find-parts {
    border-radius: 24px;
    background: rgb(29, 29, 29);
    color: white;
  }
  
  .shrink-height {
    max-height: 600px;
    height: auto;
  }
  
  .connector-lines line {
    stroke: rgba(200, 200, 200, 1);
  }
  
  .part-label {
    position: absolute;
    color: rgb(255, 255, 255);
    padding: 4px 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    z-index: 2;
    transform: translateY(-50%);
  }
  
  .part-label.left {
    left: 0%;
  }
  
  .part-label.left::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px 0 6px 8px;
    border-left-color: white;
    margin-left: 8px;
  }
  
  .part-label.left::before {
    content: '';
    display: none;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px 8px 6px 0;
    border-right-color: white;
    margin-right: 8px;
  }
  
  .part-label.left:hover::after {
    display: none;
  }
  
  .part-label.left:hover::before {
    display: inline-block;
  }
  
  .part-label.right {
    right: 0%;
  }
  
  .part-label.right::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px 8px 6px 0;
    border-right-color: rgb(255, 255, 255);
    margin-right: 8px;
  }
  
  .part-label.right::after {
    content: '';
    display: none;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px 0 6px 8px;
    border-left-color: rgb(255, 255, 255);
    margin-left: 8px;
  }
  
  .part-label.right:hover::before {
    display: none;
  }
  
  .part-label.right:hover::after {
    display: inline-block;
  }
  
  .part-card {
    color: black;
    border-radius: 15px;
    position: absolute;
    opacity: 0;
    width: 280px;
    max-width: 350px;
    min-width: 220px;
    height: auto;
    max-height: 400px;
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
  }
  
  .part-label.left + .part-card {
    left: 0;
    top: 50%;
    transform-origin: right center;
  }
  
  .part-label.left:hover + .part-card {
    opacity: 1;
    transform: translate(-100%, -50%) scale(1);
    pointer-events: auto;
  }
  
  .part-label.right + .part-card {
    top: 50%;
    right: 0;
    transform-origin: left center;
  }
  
  .part-label.right:hover + .part-card {
    opacity: 1;
    transform: translate(100%, -50%) scale(1);
    pointer-events: auto;
  }
  
  .part-label.left:hover + .part-card,
  .part-card[data-side="left"]:hover {
    opacity: 1;
    transform: translate(-100%, -50%) scale(1);
    pointer-events: auto;
  }
  
  .part-label.right:hover + .part-card,
  .part-card[data-side="right"]:hover {
    opacity: 1;
    transform: translate(100%, -50%) scale(1);
    pointer-events: auto;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card-img {
    height: 25%;
    object-fit: cover;
  }
  
  .hover-full-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .card:hover .hover-full-overlay {
    transform: translateY(0);
  }
  

@media (max-width: 1459px) {
  .desktop-only {
    display: none !important;
  }
  .interaction-hint {
    display: none !important;
  }
  .mobile-parts-grid {
    display: block !important;
    padding: 0 !important;
    margin-top: 2rem;
    perspective: 1000px;
  }
  

  .mobile-parts-grid .card {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.4),
      0 0 20px rgba(139, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
  }

  .part-card {
    color: black;
    border-radius: 15px;
    position: absolute;
    opacity: 0;
    width: 280px;
    max-width: 350px;
    min-width: 250px;
    height: auto;
    max-height: 400px;
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(139, 0, 0, 0.3);
  }
  

  .mobile-parts-grid .card-img-top,
  .mobile-parts-grid .card-img {
    display: block !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    filter: brightness(0.95);
    transition: filter 0.4s ease;
  }
  

  .mobile-parts-grid .hover-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 10;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  

  .mobile-parts-grid .card:hover .hover-full-overlay {
    transform: translateY(0);
  }
  

  .mobile-parts-grid .card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 
      0 20px 50px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(139, 0, 0, 0.4),
      0 0 60px rgba(220, 20, 60, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(220, 20, 60, 0.5);
  }
  
  .mobile-parts-grid .card:hover .card-img-top,
  .mobile-parts-grid .card:hover .card-img {
    filter: brightness(1.1);
  }
  

  .mobile-parts-grid .card-body {
    background: linear-gradient(214.75deg, #8f1414 19.89%, #111 80.11%) !important;
    padding: 1.5rem;
    position: relative;
    border-radius: 0 0 15px 15px;
  }
  

  .mobile-parts-grid .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(220, 20, 60, 0.5) 50%, 
      transparent 100%);
  }
  
 
  .mobile-parts-grid .card-body h5,
  .mobile-parts-grid .card-body .card-title {
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-parts-grid .card-body p,
  .mobile-parts-grid .card-body .card-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  

  .mobile-parts-grid .col-12,
  .mobile-parts-grid .col-sm-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .mobile-parts-grid .card {
    animation: cardFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
  }

  .mobile-parts-grid .col-12:nth-child(1) .card,
  .mobile-parts-grid .col-sm-6:nth-child(1) .card { animation-delay: 0.1s; }
  .mobile-parts-grid .col-12:nth-child(2) .card,
  .mobile-parts-grid .col-sm-6:nth-child(2) .card { animation-delay: 0.2s; }
  .mobile-parts-grid .col-12:nth-child(3) .card,
  .mobile-parts-grid .col-sm-6:nth-child(3) .card { animation-delay: 0.3s; }
  .mobile-parts-grid .col-12:nth-child(4) .card,
  .mobile-parts-grid .col-sm-6:nth-child(4) .card { animation-delay: 0.4s; }
  .mobile-parts-grid .col-12:nth-child(5) .card,
  .mobile-parts-grid .col-sm-6:nth-child(5) .card { animation-delay: 0.5s; }
  .mobile-parts-grid .col-12:nth-child(6) .card,
  .mobile-parts-grid .col-sm-6:nth-child(6) .card { animation-delay: 0.6s; }
}


@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(30deg) translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) translateY(0) scale(1);
  }
}


@media (min-width: 1250px) {
  .mobile-parts-grid {
    display: none !important;
  }
  
  .desktop-only {
    display: block !important;
  }
  
  .interaction-hint {
    display: block !important;
  }

  .part-card {
    color: black;
    border-radius: 15px;
    position: absolute;
    opacity: 0;
    max-width: 280px;
    min-width: 220px;
    height: auto;
    max-height: 350px;
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.5),
      0 0 30px rgba(139, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  
  .part-card.active {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 50px rgba(220, 20, 60, 0.4),
      0 0 80px rgba(220, 20, 60, 0.2);
  }
}


@media (min-width: 768px) and (max-width: 1249px) {
  .mobile-parts-grid .card-img-top,
  .mobile-parts-grid .card-img {
    height: 220px !important;
  }
}


@media (max-width: 767px) {
  .mobile-parts-grid .card-img-top,
  .mobile-parts-grid .card-img {
    height: 180px !important;
  }
  
  .mobile-parts-grid .card {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(139, 0, 0, 0.2);
  }
}

@media (max-width: 575px) {
  .mobile-parts-grid .col-12 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .mobile-parts-grid .card-img-top,
  .mobile-parts-grid .card-img {
    height: 160px !important;
  }
  
  .mobile-parts-grid .card-body {
    padding: 1rem !important;
  }
  
  .mobile-parts-grid .card {
    box-shadow: 
      0 6px 20px rgba(0, 0, 0, 0.4),
      0 0 12px rgba(139, 0, 0, 0.15);
  }
}






   @media (max-width: 1459px) {
    .mobile-parts-grid .card:not(.animate) {
      opacity: 0 !important;
      transform: perspective(1200px) rotateY(50deg) translateY(50px) scale(1.1) !important;
    }
    
    .mobile-parts-grid .card {
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    .mobile-parts-grid .card.animate {
      opacity: 1 !important;
      transform: perspective(1200px) rotateY(0deg) translateY(0) scale(1) !important;
    }
    
    .mobile-parts-grid .card.animate:hover {
      transform: perspective(1200px) translateY(-5px) scale(1) !important;
    }
  }

  /* ============================================
     SERVICES SECTION
     ============================================ */
  
  .rounded-top-section {
    background-color: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
  }
  
  .service-wrapper {
    display: flex;
    gap: 20px;
    height: 400px;
}

.service-item {
    flex: 1;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    transition: flex 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.service-content {
    position: relative;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0s;
}

.service-content h4,
.service-content p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0s;
}

.service-wrapper:not(:hover) .service-item.active .service-content h4,
.service-wrapper:hover .service-item:hover .service-content h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.service-wrapper:not(:hover) .service-item.active .service-content p,
.service-wrapper:hover .service-item:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.service-wrapper:not(:hover) .service-item.active .service-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.service-wrapper:hover .service-item:hover .service-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.service-item.active {
    flex: 2.5;
}

.service-wrapper:hover .service-item {
    flex: 1;
}

.service-wrapper:hover .service-item:hover {
    flex: 2.5;
}

@media (max-width: 767px) {
    .service-wrapper {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .service-item {
        flex: none !important;
        height: 250px;
        width: 100%;
        transition: none;
        cursor: default;
    }

    .service-item.active {
        flex: none !important;
    }

    .service-wrapper:hover .service-item,
    .service-wrapper:hover .service-item:hover {
        flex: none !important;
    }

    .service-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none;
    }

    .service-content h4,
    .service-content p {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none;
    }

    .service-content h4 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-wrapper {
        height: 350px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h4 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }
}
  
  
  /* ============================================
     MOTTO SECTION
     ============================================ */
  
  .motto h2 {
    color: black;
    font-size: 1.75rem;
  }
  
  .motto .highlight {
    color: #d62828;
    font-size: 3rem;
    font-weight: bold;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
  }
  
  
  /* ============================================
     DETAILS SECTION
     ============================================ */
  
  .details-section {
    background: rgb(29, 29, 29);
    border-radius: 24px;
    padding: 30px 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .details-section-heading {
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-align: center;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.2rem;
  }
  
  .center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .details-content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: 600px;
  }
  
  .content-column {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .icon-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .main-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: #3a3a3a;
  }
  
  .main-icon i {
    font-size: 2rem;
    color: #e0e0e0;
  }
  
  .content-column h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .content-column p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
  }
  
  .center-images {
    display: flex;
    flex-direction: row;
    gap: 15px;
    height: 70%;
    width: 100%;
  }
  
  .image-container {
    padding: 20px;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    min-height: 200px;
    background: linear-gradient(214.75deg, rgb(121, 28, 28) 19.89%, #111 80.11%);
    background-repeat: no-repeat;
    background-size: 200% auto, cover;
    background-position: center, center;
    transition: background-position 0.5s ease;
  }
  
  .image-container.bg-loaded {
    background:
      url("../images/flight.png"),
      linear-gradient(214.75deg, rgb(121, 28, 28) 19.89%, #111 80.11%);
    background-repeat: no-repeat;
    background-size: 200% auto, cover;
    background-position: center, center;
  }
  
  .image-container.bg-loaded:first-child:hover {
    background-position: calc(0% + 15px) center, center;
  }
  
  .image-container.bg-loaded:last-child:hover {
    background-position: calc(100% - 15px) center, center;
  }
  
  .image-container.bg-loaded:first-child {
    background-position: left;
  }
  
  .image-container.bg-loaded:last-child {
    background-position: right;
  }
  
  .right-content {
    padding-left: 20px;
  }
  
  .right-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  
  .right-content p {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
  }
  
  @media (max-width: 992px) {
    .details-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .details-header {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .right-content {
      padding-left: 0;
      text-align: center;
    }
  
    .center-images {
      flex-direction: row;
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .details-section {
      padding: 40px 20px;
    }
  
    .center-images {
      flex-direction: column;
    }

    .image-container.bg-loaded {
      background-size: 100% auto, cover;
    }
    .image-container:last-child {
      display: none;
    }
  
    .details-header h3 {
      font-size: 1rem;
    }
  
    .details-section-heading {
      font-size: 2rem;
    }
  }
  
  
  /* ============================================
     CONTACT FORM SECTION
     ============================================ */
  
  #contact-form-section {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    border: 2px solid rgba(214, 40, 40, 0.2) !important;
    border-radius: 24px !important;
    border-image: none !important;
    backdrop-filter: none !important;
    box-shadow: 0 8px 32px rgba(214, 40, 40, 0.1) !important;
  }
  
  #contact-form-section .form-control {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 2px solid rgba(214, 40, 40, 0.2) !important;
    border-radius: 12px !important;
    color: #111 !important;
  }
  
  #contact-form-section .form-control:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: #d62828 !important;
    box-shadow: 0 0 0 0.2rem rgba(214, 40, 40, 0.15) !important;
    color: #111 !important;
  }
  
  #contact-form-section .form-control::placeholder {
    color: rgba(17, 17, 17, 0.6) !important;
  }
  
  #contact-form-section .custom-gradient-btn {
    background: linear-gradient(214.75deg, #d62828 19.89%, #111 80.11%) !important;
    border: none !important;
    border-image: none !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }
  
  #contact-form-section .custom-gradient-btn:hover {
    background: linear-gradient(162.73deg, #fff 11.91%, #d62828 152.28%) !important;
    color: #111 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.3) !important;
  }
  
  #contact-form-section .form-check-input {
    background-color: transparent !important;
    border: 1px solid rgba(214, 40, 40, 0.3) !important;
  }
  
  #contact-form-section .form-check-input:checked {
    background-color: #d62828 !important;
    border-color: #d62828 !important;
  }
  
  #contact-form-section .form-check-label {
    color: #111 !important;
  }
  
  .alert {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    margin-bottom: 0;
    font-size: 14px;
    animation: fadeIn 0.3s ease-in;
  }
  
  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
  }
  
  .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
  }
  
  /* .btn-close {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    opacity: 0.7;
    width: 20px;
    height: 20px;
  }
  
  .btn-close:hover {
    opacity: 1;
  }
  
  .btn-close:before {
    content: "×";
    font-weight: bold;
  } */
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* ============================================
     CONTACT US SECTION (FOOTER)
     ============================================ */
  
  .contact-us-section {
    background-color: #111;
    color: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    font-family: 'Inter', sans-serif;
  }
  
  .contact-us-section h4,
  .contact-us-section h6 {
    color: white;
    font-weight: 700;
  }
  
  .contact-us-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .contact-us-section a:hover {
    text-decoration: underline;
  }
  
  .contact-us-section .contact-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-us-section .contact-column a:hover {
    color: #fc7474;
    text-decoration: wavy;
    font-size: 1.08rem;
  }
  
  .contact-plane {
    max-width: 220px;
    opacity: 0.85;
    filter: brightness(1.2);
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: floatPlane 2.5s ease-in-out infinite;
  }
  
  .contact-plane:hover {
    transform: scale(1.05) translateY(-50px);
    filter: brightness(1.4);
  }
  
  @keyframes floatPlane {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .footer-container {
    background: linear-gradient(214.75deg, #430404 19.89%, #000000 80.11%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(214, 40, 40, 0.2);
  }
  
  
  /* ============================================
     UTILITY CLASSES
     ============================================ */
  
  .section-divider {
    height: 2px;
    background-color: #d62828;
    border: none;
    margin-top: 8px;
    margin-bottom: 12px;
  }
  
  .hero-box {
    border-radius: 24px;
    background-color: #cecece !important;
  }
  
  .custom-about-box {
    background-color: #cecece;
    border-radius: 24px;
  }
  
  .know-more-button {
    background: linear-gradient(214.75deg, #d62828 19.89%, #111 80.11%);
    color: #fff;
    box-shadow: -2px 9px 23.7px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .know-more-button:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #000;
  }
  
  .custom-gradient-btn {
    color: #fff;
    padding: 0.5rem 1.25rem;
    border: 2px solid transparent;
    border-image-source: linear-gradient(263.48deg, #d62828 24.2%, #111 96.23%);
    border-image-slice: 1;
    background: linear-gradient(214.75deg, #d62828 19.89%, #111 80.11%);
    border-radius: 50rem;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .custom-gradient-btn:hover {
    background: #fff;
    color: #d62828;
    text-decoration: none;
  }
  
  hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 40, 40, 0.5), transparent);
    margin: 2.5rem 0;
  }
  
  h5 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }
  
  h2 {
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
  }
  
  
  /* ============================================
     COUNTER/STATS (If applicable)
     ============================================ */
  
  .counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  
  .counter-number h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .counter-label {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
  }
  
  .stats-container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .stats-container.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .counter-item {
    border-radius: 16px;
    padding: 14px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d62828, transparent);
    transition: left 0.5s ease;
  }
  
  .counter-item:hover {
    background: rgba(214, 40, 40, 0.12);
    border: 1px solid rgba(214, 40, 40, 0.15);
    border-color: rgba(214, 40, 40, 0.3);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.2);
  }
  
  .counter-item:hover::before {
    left: 100%;
  }
  
  .stats-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 2rem;
  }