/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #f4f6f9;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  z-index: 0;
  animation: float 6s infinite ease-in-out;
}

.hero-section h1 {
  font-size: 2.5rem;
  z-index: 1;
}

.hero-section p {
  z-index: 1;
}

/* Card Styles */
.access-card {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  background: #fff;
}

.access-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.access-card .card-header {
  font-size: 1.5rem;
  font-weight: 700;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff, #6610f2);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #17a2b8, #5bc0de);
}

.card-body p {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Buttons */
.btn {
  font-size: 1.1rem;
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}
