/* Assessment Home Specific Styles */
/* Import common components */
@import url('common-components.css');

/* Modern Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
  color: #e67e22;
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23475569' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #e67e22;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #495057;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  background: #77a3ec !important;
  border: none;
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(119, 163, 236, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(119, 163, 236, 0.4);
  background: #5b8de8 !important;
  color: white;
  text-decoration: none;
}

.cta-secondary {
    background: #e67e22;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 166, 70, 0.3);
}

.cta-secondary:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 166, 70, 0.4);
  color: #ffffff;
  text-decoration: none;
}

/* Modern Stats Section */
.stats-section {
  background: #f8fafc;
  padding: 80px 0;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #77a3ec;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  font-size: 1rem;
}

/* Modern Features Section */
.features-section {
  padding: 100px 0;
  background: white;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #77a3ec !important;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid rgba(119, 163, 236, 0.2);
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e67e22;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #77a3ec !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(119, 163, 236, 0.3);
}

.feature-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-description {
  color: #64748b;
  line-height: 1.6;
}


/* Responsive Design for Home Page */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 24px;
    margin-bottom: 16px;
  }
  
  .stats-section, .features-section {
    padding: 60px 0;
  }
  
  .cta-button, .cta-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0 40px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  
  .stats-section, .features-section {
    padding: 40px 0;
  }
}