/* ------------------------------
   Pilot Project Section
--------------------------------*/
.pilot-section {
  background: #f5f9fc;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  color: #142a44;
}

.pilot-section h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #1c3c61;
}

.pilot-section .intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Cards container */
.pilot-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual detail card */
.detail-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  box-shadow: 
      0 0 20px rgba(0, 100, 155, 0.15),
      inset 0 0 12px rgba(255, 255, 255, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding-bottom: 0;
}

.detail-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
      0 12px 25px rgba(0,0,0,0.25),
      0 0 25px rgba(0, 187, 255, 0.35);
}

.detail-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #084055;
  text-shadow: 0 0 10px rgba(3, 115, 159, 0.4);
}

.detail-card p {
  font-size: 1rem;
  color: #043f61;
  line-height: 1.6;
}




/* Call-to-action section */
.call-to-action {
  text-align: center;
  margin-top: 20px;
}

.call-to-action p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* CTA button */
.cta-button {
  background: #0077c8;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pilot-section h1 {
    font-size: 2rem;
  }

  .detail-card {
    max-width: 90%;
  }
}



/* LARGE DESKTOP / WIDE SCREEN (min-width: 1400px) */
@media (min-width: 1400px) {
  
  .pilot-section {
    padding: 100px 8%;        /* more space on top/bottom and sides */
    max-width: 1800px;        /* stretch wide */
  }

  .pilot-section h1 {
    font-size: 4rem;          /* really big and bold */
    margin-bottom: 40px;
  }

  .pilot-section .intro {
    font-size: 2rem;          /* bigger intro text */
    max-width: 1400px;        /* stretch intro paragraph */
    margin-bottom: 60px;
  }

  .pilot-details {
    gap: 40px;                /* more space between cards */
    justify-content: space-between; /* stretch cards fully */
  }

  .detail-card {
    flex: 1 1 320px;          /* bigger cards */
    max-width: 400px;
    padding: 40px 30px;       /* more padding inside cards */
  }

  .detail-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .detail-card p {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .call-to-action p {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 1.5rem;
    padding: 18px 40px;
  }
}

/* iPad Pro 12.9" — landscape and portrait */
@media (min-width: 1200px) and (max-width: 1370px) {

  .pilot-section {
    padding: 80px 6%;        /* more top/bottom space, slightly narrower sides */
    max-width: 1400px;       /* use most of screen width */
  }

  .pilot-section h1 {
    font-size: 3rem;          /* big title but smaller than 1400px desktop */
    margin-bottom: 30px;
  }

  .pilot-section .intro {
    font-size: 1.8rem;        /* readable intro text */
    max-width: 1200px;
    margin-bottom: 50px;
  }

  .pilot-details {
    gap: 30px;                /* larger spacing between cards */
    justify-content: space-between; /* stretch cards nicely */
  }

  .detail-card {
    flex: 1 1 280px;          /* slightly smaller than desktop cards */
    max-width: 350px;
    padding: 35px 25px;       /* good padding for bigger text */
  }

  .detail-card h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .detail-card p {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .call-to-action p {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 1.4rem;
    padding: 16px 36px;
  }
}
