/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

/* Hero Section */
.hero-section {
  flex: 1.5;
  background: url('https://schools.sch.ng/petram/uploads/gallery/media/p2.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
  color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-text {
  font-size: 3rem;
  margin: 0;
  animation: fade-in 2s ease-in-out;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-top: 10px;
  animation: slide-in 2s ease-in-out;
}

/* Action Section */
.action-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
}

.action-card {
  background: white;
  padding: 20px;
  text-align: center;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 15px;
}

.action-card h2 {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
}

.action-btn {
  text-decoration: none;
  color: white;
  background: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.action-btn:hover {
  background: #0056b3;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-subtext {
    font-size: 1rem;
  }

  .action-section {
    flex-direction: column;
    gap: 15px;
  }

  .action-card {
    width: 90%;
  }
}
/* Return Section */
.return-section {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background: #f1f1f1;
}

.return-btn {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background: #007bff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.return-btn i {
  margin-right: 8px;
}

.return-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}
