/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 30px;
}

/* Quick Access Section */
.quick-access {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.access-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.access-card i {
  color: #667eea;
  margin-bottom: 20px;
}

.access-card h4 {
  margin: 15px 0;
  font-weight: 600;
}

.access-card p {
  color: #6c757d;
  margin-bottom: 20px;
  min-height: 60px;
}

/* Schools Section */
.schools-section {
  padding: 80px 0;
}

.search-box {
  margin-bottom: 40px;
}

.school-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.school-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.school-logo-placeholder {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.school-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.school-stats {
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-box {
  padding: 30px;
}

.feature-box i {
  display: block;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  margin-top: 0 !important;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .access-card {
    margin-bottom: 20px;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.school-card-item {
  animation: fadeInUp 0.5s ease-out;
}