/* Course detail page redesign (info cards, highlight grids, career grid) */

.course-redesign {
  color: #555;
}

.course-redesign .pt-30 { padding-top: 30px; }
.course-redesign .pt-60 { padding-top: 60px; }
.course-redesign .pb-40 { padding-bottom: 40px; }
.course-redesign .mt-20 { margin-top: 20px; }
.course-redesign .mt-60 { margin-top: 60px; }
.course-redesign .mb-60 { margin-bottom: 60px; }

.course-redesign .section-block {
  padding-top: 60px;
  padding-bottom: 40px;
}

.course-redesign h2,
.course-redesign h3,
.course-redesign h4,
.course-redesign h5 {
  color: var(--ink, #1c1e26);
}

.course-redesign .section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #73780d);
  margin-bottom: 10px;
}

.course-redesign .section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.course-redesign .section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent, #73780d);
  border-radius: 3px;
  margin-bottom: 25px;
}

.course-redesign .section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.course-redesign .text-center .section-eyebrow,
.course-redesign .text-center .section-title {
  display: block;
}

.course-redesign .text-center p {
  text-align: center;
}

/* Hero card */
.course-hero-card {
  background: #f7f8fa;
  border-radius: var(--radius-lg, 20px);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(17, 17, 17, 0.08));
}

.course-hero-card .course-hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}

.specialization-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.specialization-pills.justify-content-center {
  justify-content: center;
}

.specialization-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(28, 30, 38, 0.1);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink, #1c1e26);
}

.specialization-pill i {
  color: var(--accent, #73780d);
  font-size: 16px;
}

.course-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-md, 14px);
  padding: 15px 20px;
  box-shadow: var(--shadow-card, 0 6px 20px rgba(17, 17, 17, 0.06));
  margin-bottom: 15px;
}

.course-info-box:last-child {
  margin-bottom: 0;
}

.course-info-box .icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(28, 30, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent, #73780d);
}

.course-info-box .label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-info-box .value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #1c1e26);
}

/* Highlight cards */
.highlight-card {
  background: #fff;
  border: 1px solid rgba(28, 30, 38, 0.08);
  border-radius: var(--radius-md, 14px);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(17, 17, 17, 0.08));
  border-color: transparent;
}

.highlight-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(115, 120, 13, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent, #73780d);
}

.highlight-card p {
  margin: 0;
  font-weight: 600;
  color: var(--ink, #1c1e26);
  font-size: 15px;
  text-align: center;
}

/* Semester curriculum cards */
.semester-card {
  background: #fff;
  border-radius: var(--radius-md, 14px);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-card, 0 6px 20px rgba(17, 17, 17, 0.06));
}

.semester-card .semester-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink, #1c1e26);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.semester-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

.semester-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.semester-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.6;
}

.semester-card ul li:last-child {
  margin-bottom: 0;
}

.semester-card ul li::before {
  content: "\eb80";
  font-family: remixicon !important;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent, #73780d);
  font-size: 15px;
}

/* Career options grid */
.career-card {
  background: #fff;
  border: 1px solid rgba(28, 30, 38, 0.08);
  border-radius: var(--radius-md, 14px);
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(17, 17, 17, 0.08));
  background: var(--ink, #1c1e26);
}

.career-card:hover .icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.career-card:hover p {
  color: #fff;
}

.career-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(115, 120, 13, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent, #73780d);
  transition: background 0.25s ease, color 0.25s ease;
}

.career-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #1c1e26);
  text-align: center;
  transition: color 0.25s ease;
}

/* Internship / placement mini features */
.course-support-area {
  background: #f7f8fa;
  border-radius: var(--radius-lg, 20px);
  padding: 45px 40px;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.support-feature .icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card, 0 6px 20px rgba(17, 17, 17, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-dark, #b81f38);
}

.support-feature h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.support-feature p {
  margin: 0;
  font-size: 14px;
}

/* Full-width alternating bands */
.course-band {
  padding: 70px 0;
}

.course-band-light {
  background: #f7f8fa;
}

.course-band-dark {
  background: var(--ink, #1c1e26);
}

.course-band-dark .section-title {
  color: #fff;
}

.course-band-dark .section-eyebrow {
  color: #c3c96a;
}

.course-band-dark > .container > p,
.course-band-dark > .container > div > p {
  color: rgba(255, 255, 255, 0.7);
}

/* CTA banner */
.course-cta-banner {
  background: var(--ink, #1c1e26);
  border-radius: var(--radius-lg, 20px);
  padding: 45px 40px;
  text-align: center;
  color: #fff;
}

.course-cta-banner .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent, #73780d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.course-cta-banner h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  text-align: center;
}

.course-cta-banner .default-btn {
  background: var(--accent, #73780d);
  border: none;
}

@media (max-width: 767px) {
  .course-hero-card,
  .course-support-area,
  .course-cta-banner {
    padding: 25px;
  }

  .course-hero-card .course-hero-title {
    font-size: 22px;
  }

  .course-info-box {
    margin-bottom: 12px;
  }
}
