/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

/* Fixed Top Header (Navigation) */
.top-header {
  background-color: #11121a; /* Bootstrap's 'bg-success' */
  color: white;
  padding: 16px; 0;
  border-bottom: 3px solid #11121a; /* Yellow border */
}

.top-header .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.top-header .nav-link {
  color: white;
  font-weight: 600;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}

.top-header .nav-link:hover {
  color: #ffc107; /* Yellow hover color */
}

.home-btn {
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-btn:hover {
  background-color: white;
  color: #198754; /* Green text on hover */
}


/* Hero Section Header */
.hero-header {
  background: linear-gradient(135deg, #8ac2a8, #45216e); /* Gradient effect */
  color: white;
  padding: 80px 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-header p {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Body Padding to Avoid Overlap with Fixed Header */
body {
  padding-top: 80px; /* Adjust for the height of the fixed top header */
}

/* Card Styles */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 8px 8px 16px #d9d9d9, -8px -8px 16px #ffffff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 10px 10px 20px #c5c5c5, -10px -10px 20px #ffffff;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 10px;
}

.card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.card i {
  color: #1e90ff;
  transition: color 0.3s;
}

.card i:hover {
  color: #00bcd4;
}

.btn-outline-primary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning {
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1e90ff;
  color: white;
}

.btn-outline-success:hover {
  background-color: #28a745;
  color: white;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: white;
}

.btn-outline-warning:hover {
  background-color: #ffc107;
  color: black;
}

/* Section Styles */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}

/* List Group Styles */
.list-group-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  padding: 15px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow: inset 5px 5px 10px #d1d1d1, inset -5px -5px 10px #ffffff;
  transition: transform 0.3s ease;
}

.list-group-item:hover {
  transform: scale(1.03);
}

.list-group-item i {
  margin-right: 15px;
  color: #007bff;
  font-size: 1.5rem;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #007bff, #1e90ff);
  color: white;
  padding: 20px 0;
  text-align: center;
  font-weight: 600;
}

footer p {
  margin: 0;
}
