/*
 * AILA Tech Bundled CSS File
 * Generated: 2026-01-24 11:15:23
 * 
 * This file combines multiple CSS files into one for better performance.
 * Do not edit directly - edit source files and re-run merge_assets.py
 */


/* ========== about-page.css ========== */
/* About Page Coming Soon Styles */

.about-coming-soon-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}

.about-coming-soon-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.about-coming-soon-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: aboutFadeInUp 0.8s ease-out;
}

@keyframes aboutFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-coming-soon-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  animation: aboutPulse 2s ease-in-out infinite;
}

@keyframes aboutPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
  }
}

.about-coming-soon-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-coming-soon-message {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #2563eb;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 20px;
}

.about-coming-soon-badge i {
  animation: aboutSpin 3s linear infinite;
}

@keyframes aboutSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .about-coming-soon-card {
    padding: 40px 24px;
  }

  .about-coming-soon-title {
    font-size: 2rem;
  }

  .about-coming-soon-icon {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }
}

