body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f3f4f6;
}

.courses-page {
    width: 100%;
}

.course-hero{
    background: linear-gradient(90deg, #071a3c, #380d0d);
    color:#fff;
    padding:50px 135px;
    margin-top: -30px;
    font-family: 'poppins';
}

.hero-content {
    max-width: 700px;
}

.hero-content .tag {
    color: #ff4d4d;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-content h1{
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin:2px 0;
}

/* Tablet */
@media (max-width: 992px) {
  .course-hero {
    padding: 50px 30px;   /* Tablet */
  }
  
  .hero-content h1{
    font-size: 22px;     /* Tablet */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .course-hero {
    padding: 50px 30px;   /* Mobile */
  }
  
  .hero-content h1{
    font-size: 22px;     /* Tablet */
  }
}


.hero-content p {
    font-size: 16px;
    color: #d1d5db;
}

/* COURSE WRAPPER */
.course-wrapper {
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* CARD */
.course-card {
    background: #ffffff;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    width: 320px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-img img {
    width: 100%;
    aspect-ratio: 5 / 3;
    background-size: cover;
    background-position: center;
}



/* BODY */
.course-body {
    padding: 20px;
}

.course-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.category {
    color: #6366f1;
    font-size: 13px;
    font-weight: 600;
}

.time {
    font-size: 13px;
    color: #6b7280;
}

.course-body h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #111827;
}

.course-body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* PAGINATION */
.pagination-box {
    text-align: center;
    padding-bottom: 60px;
}

.no-course {
    padding: 50px;
    font-size: 18px;
    color: #6b7280;
}