.courses-hero {
  /*background: linear-gradient(to right, #2e66f2, #2149c9); /* blue gradient */
  background-color: #182b5c;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.breadcrumb a {
  text-decoration: none;
  color: #8a7d6d; /* Brownish text */
}

.breadcrumb .separator {
  margin: 0 6px;
  color: #8a7d6d;
}

.breadcrumb .current {
  color: #0074c2; /* Blue text */
}
.courses-hero-container h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.courses-hero-container p {
  font-size: 1.1rem;
  font-weight: 400;
}
.courses-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.course-card {
  background: white;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.course-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e66f2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}


.course-meta {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
}

.course-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.course-card ul {
  padding-left: 1.2rem;
  list-style: none;
}

.course-card ul li {
  margin-bottom: 0.5rem;
  color: #333;
}

.course-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-links a {
  color: #2e66f2;
  font-weight: 600;
  text-decoration: none;
}

.enroll-btn {
  background-color: #2563eb; /* Bright blue */
  color: white !important; /* Force text to be white */
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* Ensure link inside doesn't look underlined */
  display: inline-block;
}

.enroll-btn:hover {
  background-color: orange;
  color: white !important; /* Keep white text on hover */
}


.course-topics {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
  text-align: left; /* Force text to align left */
}

.course-topics li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  text-align: left;
}

.course-topics li::before {
  content: "\f105"; /* Font Awesome angle-right icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #333;
}
