/* Flying Cars Section Styles */

/* Main section styling */
#FlyingCarsSection {
    display: flex;
    /* background: white;  Remove or comment this out to let the body gradient show */
    padding-bottom: 2.5rem;
    padding-top: 70px;
  }
  
  @media (min-width: 768px) {
    #FlyingCarsSection {
      padding-top: 140px;
    }
  }
  
  @media (min-width: 1024px) {
    #FlyingCarsSection {
      padding-bottom: 0;
    }
  }
  
  /* Section container */
  #FlyingCarsSection .flex.w-full.flex-col {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Heading styles */
  #FlyingCarsSection h2 div {
    margin: 0 auto;
    margin-bottom: 0.625rem;
    max-width: 350px;
    text-align: center;
    font-family: var(--font-family--body);
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    color: #1A1450; /* text-blue-900 */
  }
  
  @media (min-width: 768px) {
    #FlyingCarsSection h2 div {
      margin-bottom: 21px;
      max-width: 1200px;
      font-size: 3.25rem;
      line-height: 54px;
    }
  }
  
  /* Subtitle styles */
  #FlyingCarsSection .mx-auto.max-w-\[550px\] {
    margin: 0 auto;
    max-width: 550px;
    padding: 0 2.5rem;
    text-align: center;
    font-family: var(--font-family--body, sans-serif);
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.5rem;
    color: #716cab; /* text-blue-900 */
  }
  
  @media (min-width: 768px) {
    #FlyingCarsSection .mx-auto.max-w-\[550px\] {
      padding: 0;
      font-size: 22px;
      line-height: 30px;
    }
  }
  
  /* Desktop cards container */
  #FlyingCarsSection .relative.hidden.w-full.justify-center.overflow-x-clip.lg\:flex {
    position: relative;
    width: 100%;
    justify-content: center;
    overflow-x: clip;
    display: none;
  }
  
  @media (min-width: 1024px) {
    #FlyingCarsSection .relative.hidden.w-full.justify-center.overflow-x-clip.lg\:flex {
      display: flex;
    }
  }
  
  /* Desktop cards row */
  #FlyingCarsSection .mx-\[-30px\].flex.h-\[780px\].flex-row.items-center.justify-between {
    margin-left: -30px;
    margin-right: -30px;
    display: flex;
    height: 780px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  @media (min-width: 1280px) {
    #FlyingCarsSection .mx-\[-30px\].flex.h-\[780px\].flex-row.items-center.justify-between {
      width: 1500px;
    }
  }
  
  @media (min-width: 1536px) {
    #FlyingCarsSection .mx-\[-30px\].flex.h-\[780px\].flex-row.items-center.justify-between {
      width: 2200px;
    }
  }
  
  /* Card positioning containers */
  #FlyingCarsSection .pointer-events-none {
    pointer-events: none;
  }
  
  #FlyingCarsSection .pointer-events-none.pt-\[410px\] {
    padding-top: 410px;
    transform: translate3d(0px, -347.404px, 0px);
  }
  
  #FlyingCarsSection .pointer-events-none.pt-\[410px\].\!pt-\[470px\] {
    padding-top: 470px !important;
    transform: translate3d(0px, -231.602px, 0px);
  }
  
  #FlyingCarsSection .pointer-events-none.pt-\[410px\].\!pt-\[320px\] {
    padding-top: 320px !important;
    transform: translate3d(0px, -115.801px, 0px);
  }
  
  /* Card container */
  #FlyingCarsSection .flex.max-w-\[280px\].rounded-2xl.lg\:min-w-\[280px\] {
    display: flex;
    max-width: 280px;
    border-radius: 1rem;
  }
  
  @media (min-width: 1024px) {
    #FlyingCarsSection .flex.max-w-\[280px\].rounded-2xl.lg\:min-w-\[280px\] {
      min-width: 280px;
    }
  }
  
  #FlyingCarsSection .flex.max-w-\[280px\].rounded-2xl.lg\:min-w-\[280px\].mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  /* Card image container */
  #FlyingCarsSection .flex.h-full.justify-center {
    display: flex;
    height: 100%;
    justify-content: center;
  }
  
  /* Card images */
  #FlyingCarsSection img.rounded-xl.drop-shadow-\[1\.8px_1\.8px_2\.7px_rgba\(0\,0\,0\,0\.2\)\].my-auto.h-fit.w-\[280px\].object-contain {
    border-radius: 0.75rem;
    box-shadow: 1.8px 1.8px 2.7px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
    width: 280px;
    object-fit: contain;
  }
  
  
  /* Animation for floating cards */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  #FlyingCarsSection .pointer-events-none {
    animation: float 6s ease-in-out infinite;
  }
  
