/* Home */
.first-section {
  overflow: hidden;
  position: relative;
}

.step-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0a2670 0%, #1e40af 100%);
  z-index: 60;
  transition: opacity 0.8s ease-in-out;
}

.welcome-screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0a2670 0%, #1e40af 100%);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.welcome-content {
  text-align: center;
  color: white;
  max-width: 90%;
  padding: 2rem 1rem;
  z-index: 10;
}

.logo-container {
  margin-bottom: 2rem;
}

.welcome-text {
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #e0f2fe, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.2;
}

.welcome-subtext {
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.4;
}

.feature-highlight {
  opacity: 0;
  transition: opacity 1s ease;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  margin-bottom: 0.5rem;
  color: #93c5fd;
}

.feature-text {
  color: #e0f2fe;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 640px) {
  .welcome-content {
    padding: 1rem;
  }

  .welcome-text {
    font-size: 1.8rem;
  }

  .feature-highlight {
    flex-direction: column;
    gap: 1rem;
  }

  .feature {
    width: 100%;
    max-width: 250px;
    padding: 1rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .welcome-text {
    font-size: 2.5rem;
  }

  .feature-highlight {
    gap: 1.5rem;
  }

  .feature {
    padding: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .welcome-text {
    font-size: 3.5rem;
  }

  .feature-highlight {
    gap: 2rem;
  }

  .feature {
    padding: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating,
  .particle,
  .feature {
    animation: none;
    transition: none;
  }
}

/* Dashboard */
.card-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.input-focus:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-hover {
  transition: all 0.3s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(10, 38, 112, 0.2);
}

.gradient-bg {
  background: linear-gradient(135deg, #0a2670 0%, #1e40af 100%);
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.5;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-shadow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.table-row:hover {
  background-color: #f8fafc;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.action-btn {
  transition: all 0.2s ease;
}

.action-btn:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.table-row {
  animation: fadeIn 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  table {
    font-size: 0.875rem;
  }

  .status-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .card-shadow {
    border-radius: 1rem;
  }

  .gradient-bg {
    padding: 1.5rem 1rem;
  }

  .blur-circle {
    filter: blur(30px);
  }
}

@media (max-width: 480px) {
  .status-badge {
    font-size: 0.65rem;
  }

  .action-btn i {
    font-size: 0.875rem;
  }
}

/* Generate PR */
.card-shadow {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.input-focus:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-hover {
  transition: all 0.3s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(10, 38, 112, 0.4);
}

.gradient-bg {
  background: linear-gradient(135deg, #0a2670 0%, #1e40af 100%);
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  height: 8px;
  border-radius: 4px;
  background-color: #e2e8f0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #0a2670 0%, #1e40af 100%);
  width: 0%;
  transition: width 0.5s ease;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-input {
  width: 100%;
  padding: 18px 16px 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #fff;
}

.floating-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.floating-label-text {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 4px;
  color: #6b7280;
  transition: all 0.2s ease;
  pointer-events: none;
}

.floating-input:focus + .floating-label-text,
.floating-input:not(:placeholder-shown) + .floating-label-text {
  top: 0;
  left: 12px;
  font-size: 12px;
  color: #3b82f6;
}

.select-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.how-it-works-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-pattern {
  background-color: #0a2670;
  background-image: radial-gradient(
      circle at top right,
      #1e40af 0%,
      transparent 50%
    ),
    radial-gradient(circle at bottom left, #3b82f6 0%, transparent 50%);
}

.nav-blur {
  backdrop-filter: blur(10px);
  background: rgba(10, 38, 112, 0.95);
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(10, 38, 112, 0.2);
}
