/* ===== Aviation Insights Section ===== */
.dr1044insight {
  background: linear-gradient(to bottom right, #e3f2fd, #bbdefb);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #0b2e4e;
  position: relative;
  overflow: hidden;
}

.dr1044insight .insight-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffffd8;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 55, 120, 0.15);
  transition: transform 0.3s ease;
}

.dr1044insight .insight-container:hover {
  transform: translateY(-5px);
}

.dr1044insight .insight-title {
  text-align: center;
  font-size: 2.2rem;
  color: #005cb2;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

.dr1044insight .insight-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #1a1a1a;
  font-size: 1rem;
}

.dr1044insight a {
  color: #1565c0;
  text-decoration: none;
  font-weight: 600;
}

.dr1044insight a:hover {
  text-decoration: underline;
}

.dr1044insight blockquote {
  background: #e1f5fe;
  padding: 20px;
  border-left: 5px solid #0288d1;
  border-radius: 10px;
  font-style: italic;
  color: #01579b;
  margin: 30px 0;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}

.dr1044insight .signature {
  margin-top: 30px;
  font-weight: 600;
  text-align: right;
  color: #0d47a1;
  font-size: 1.1rem;
}

/* ===== Fade-in Animation (separate trigger class) ===== */
.fadein-insight {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}

.fadein-insight.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .dr1044insight .insight-container {
    padding: 25px 20px;
  }
  .dr1044insight .insight-title {
    font-size: 1.8rem;
  }
  .dr1044insight .insight-text p {
    font-size: 0.95rem;
  }
}