/* ==========================================================
   COMMON SECTION HEADER
========================================================== */

.section-header {
  max-width: 850px;

  margin: 0 auto 70px;

  text-align: center;
}

.section-tag {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 34px;

  border-radius: 50px;

  background: rgba(0, 229, 255, 0.12);

  border: 1px solid rgba(0, 229, 255, 0.18);

  color: var(--accent);

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-family: "Montserrat", sans-serif;

  box-shadow:
    0 0 20px rgba(0, 229, 255, 0.08),
    inset 0 0 10px rgba(0, 229, 255, 0.05);
}

.section-title {
  margin-top: 28px;

  color: #fff;

  font-size: 3.2rem;

  font-weight: 800;

  line-height: 1.2;

  font-family: "Montserrat", sans-serif;
}

.section-title span {
  color: var(--accent);
}

.section-description {
  margin: 22px auto 0;

  max-width: 720px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.08rem;

  line-height: 1.9;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-tag {
    padding: 12px 26px;

    font-size: 0.8rem;
  }
}

.academy-navbar {
  padding: 18px 0;
  background: rgba(6, 16, 32, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.35s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-navbar .navbar-brand img {
  height: 52px;
}

.academy-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}

.academy-navbar .nav-link:hover {
  color: var(--accent);
}

.academy-navbar .nav-link::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: 0.3s;
}

.academy-navbar .nav-link:hover::after {
  width: 100%;
}

.academy-navbar .btn {
  padding: 12px 26px;
  border-radius: 50px;
}
/* ==========================================================
   COURSE DETAILS HERO
========================================================== */

.course-details-hero {
  position: relative;

  padding: 180px 0 120px;

  overflow: hidden;

  background: linear-gradient(135deg, #061322 0%, #091829 55%, #05111d 100%);
}

.course-details-hero::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  top: -350px;

  right: -250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 70%);
}

.course-details-hero::after {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  bottom: -220px;

  left: -180px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
}

/* ==========================================
   Left Side
========================================== */

.course-title {
  font-family: "Montserrat", sans-serif;

  font-size: 4rem;

  font-weight: 800;

  line-height: 1.15;

  color: #fff;
}

.course-title span {
  color: var(--accent);
}

.course-description {
  margin-top: 25px;

  max-width: 650px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  font-size: 1.08rem;
}

/* ==========================================
   Rating
========================================== */

.course-rating {
  display: flex;

  align-items: center;

  gap: 18px;

  margin: 35px 0;

  flex-wrap: wrap;
}

.stars {
  display: flex;

  gap: 4px;
}

.stars i {
  color: #ffd54a;

  font-size: 1rem;
}

.course-rating span {
  color: #d9d9d9;

  font-weight: 500;
}

/* ==========================================
   Course Meta
========================================== */

.course-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 40px;
}

.course-meta div {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 14px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.course-meta div:hover {
  transform: translateY(-5px);

  border-color: rgba(0, 229, 255, 0.25);

  background: rgba(0, 229, 255, 0.08);
}

.course-meta i {
  color: var(--accent);
}

.course-meta span {
  color: #fff;
}

/* ==========================================
   Buttons
========================================== */

.hero-buttons {
  display: flex;

  gap: 20px;
}

.hero-buttons .btn {
  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 600;
}

.hero-buttons .btn-primary {
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.25);
}

/* ==========================================
   Preview Card
========================================== */

.course-preview-card {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  transition: 0.35s;
}

.course-preview-card:hover {
  transform: translateY(-10px);
}

.course-preview-card img {
  width: 100%;

  height: 260px;

  object-fit: cover;
}

.preview-body {
  padding: 35px;
}

.preview-body h4 {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 25px;
}

.preview-body ul {
  list-style: none;

  padding: 0;

  margin: 0 0 30px;
}

.preview-body li {
  display: flex;

  gap: 12px;

  align-items: center;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 15px;
}

.preview-body li i {
  color: var(--accent);
}

.course-price {
  margin: 30px 0;

  font-size: 2rem;

  color: #fff;

  font-weight: 800;

  font-family: "Montserrat", sans-serif;
}

.course-price small {
  display: block;

  font-size: 0.9rem;

  margin-top: 8px;

  color: rgba(255, 255, 255, 0.55);

  font-weight: 400;
}

.preview-body .btn {
  border-radius: 50px;

  padding: 15px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 992px) {
  .course-details-hero {
    padding: 150px 0 90px;
  }

  .course-preview-card {
    margin-top: 60px;
  }

  .course-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .course-title {
    font-size: 2.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .course-meta {
    flex-direction: column;
  }

  .preview-body {
    padding: 25px;
  }

  .course-preview-card img {
    height: 220px;
  }
}

/* ==========================================================
   COURSE OVERVIEW
========================================================== */

.course-overview {
  padding: 120px 0;

  background: #081321;
}

.overview-image {
  overflow: hidden;

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.overview-image img {
  width: 100%;

  transition: 0.5s;
}

.overview-image:hover img {
  transform: scale(1.05);
}

.overview-content {
  padding-left: 40px;
}

.overview-content h3 {
  color: #fff;

  font-size: 2.3rem;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 25px;
}

.overview-content p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  margin-bottom: 35px;
}

.overview-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.overview-list div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: 0.35s;
}

.overview-list div:hover {
  transform: translateY(-5px);

  border-color: rgba(0, 229, 255, 0.3);
}

.overview-list i {
  color: var(--accent);

  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .overview-content {
    padding-left: 0;

    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .course-overview {
    padding: 80px 0;
  }

  .overview-content h3 {
    font-size: 1.8rem;
  }

  .overview-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   WHAT YOU'LL LEARN
========================================================== */

.course-skills {
  padding: 120px 0;

  background: linear-gradient(180deg, #071425, #0b1628);
}

.skill-card {
  height: 100%;

  padding: 35px;

  text-align: center;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.skill-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 229, 255, 0.3);

  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.12);
}

.skill-icon {
  width: 85px;

  height: 85px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(0, 229, 255, 0.08);

  border: 1px solid rgba(0, 229, 255, 0.2);
}

.skill-icon i {
  font-size: 2rem;

  color: var(--accent);
}

.skill-card h5 {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 15px;
}

.skill-card p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin: 0;
}

@media (max-width: 768px) {
  .course-skills {
    padding: 80px 0;
  }

  .skill-card {
    padding: 25px;
  }

  .skill-icon {
    width: 70px;

    height: 70px;
  }

  .skill-icon i {
    font-size: 1.6rem;
  }
}

/* ==========================================================
   COURSE CURRICULUM
========================================================== */

.course-curriculum {
  padding: 120px 0;

  background: #081321;
}

.curriculum-accordion {
  max-width: 900px;

  margin: auto;
}

.curriculum-accordion .accordion-item {
  margin-bottom: 20px;

  border: none;

  overflow: hidden;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.curriculum-accordion .accordion-button {
  padding: 24px 28px;

  background: transparent;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  box-shadow: none;
}

.curriculum-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 229, 255, 0.08);

  color: var(--accent);
}

.curriculum-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.curriculum-accordion .accordion-body {
  padding: 25px 30px;

  background: transparent;
}

.curriculum-accordion ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.curriculum-accordion li {
  padding: 12px 0;

  color: rgba(255, 255, 255, 0.75);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;

  padding-left: 32px;
}

.curriculum-accordion li:last-child {
  border: none;
}

.curriculum-accordion li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--accent);

  font-weight: bold;
}

@media (max-width: 768px) {
  .course-curriculum {
    padding: 80px 0;
  }

  .curriculum-accordion .accordion-button {
    padding: 20px;

    font-size: 0.95rem;
  }
}

/* ==========================================================
   COURSE PROJECTS
========================================================== */

.course-projects {
  padding: 120px 0;

  background: linear-gradient(180deg, #071425, #0b1628);
}

.project-card {
  height: 100%;

  overflow: hidden;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.project-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 229, 255, 0.3);

  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.12);
}

.project-image {
  overflow: hidden;
}

.project-image img {
  width: 100%;

  height: 230px;

  object-fit: cover;

  transition: 0.5s;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-body {
  padding: 30px;
}

.project-level {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: #22c55e;

  color: #fff;

  font-size: 0.8rem;

  font-weight: 600;

  margin-bottom: 20px;
}

.project-level.intermediate {
  background: #f59e0b;
}

.project-level.advanced {
  background: #ef4444;
}

.project-body h4 {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 15px;
}

.project-body p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;
}

.project-tech {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 25px;
}

.project-tech span {
  padding: 8px 15px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .course-projects {
    padding: 80px 0;
  }

  .project-image img {
    height: 200px;
  }

  .project-body {
    padding: 22px;
  }
}

/* ==========================================================
   CAREER OPPORTUNITIES
========================================================== */

.career-opportunities {
  padding: 120px 0;

  background: #081321;
}

.career-card {
  height: 100%;

  padding: 35px;

  text-align: center;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.career-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 229, 255, 0.3);

  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.12);
}

.career-icon {
  width: 85px;

  height: 85px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 20px;

  background: rgba(0, 229, 255, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;
}

.career-icon i {
  font-size: 2rem;

  color: var(--accent);
}

.career-card h4 {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 15px;
}

.career-card p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;
}

.career-banner {
  padding: 40px;

  border-radius: 24px;

  background: linear-gradient(135deg, #00bcd4, #0097a7);

  color: #fff;
}

.career-banner h3 {
  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 15px;
}

.career-banner p {
  margin: 0;

  opacity: 0.95;
}

.career-banner .btn {
  background: #fff;

  color: #0097a7;

  border: none;

  padding: 14px 30px;

  border-radius: 50px;

  font-weight: 600;
}

@media (max-width: 768px) {
  .career-opportunities {
    padding: 80px 0;
  }

  .career-banner {
    text-align: center;
  }

  .career-banner .btn {
    margin-top: 20px;
  }
}

/* ==========================================================
   COURSE TRAINER
========================================================== */

.course-trainer {
  padding: 120px 0;

  background: linear-gradient(180deg, #071425, #0b1628);
}

.trainer-card {
  margin-top: 70px;

  padding: 50px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trainer-image {
  width: 280px;

  height: 280px;

  margin: auto;

  border-radius: 50%;

  overflow: hidden;

  border: 6px solid rgba(0, 229, 255, 0.18);
}

.trainer-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.trainer-role {
  display: inline-block;

  padding: 8px 20px;

  border-radius: 30px;

  background: rgba(0, 229, 255, 0.12);

  color: var(--accent);

  font-weight: 600;

  margin-bottom: 20px;
}

.trainer-name {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 2.7rem;

  font-weight: 800;

  margin-bottom: 20px;
}

.trainer-description {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  margin-bottom: 35px;
}

.trainer-highlights {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.trainer-highlights div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;
}

.trainer-highlights i {
  color: var(--accent);
}

.trainer-social {
  margin-top: 35px;

  display: flex;

  gap: 15px;
}

.trainer-social a {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: 0.35s;

  text-decoration: none;
}

.trainer-social a:hover {
  background: var(--accent);

  color: #071425;

  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .trainer-card {
    padding: 35px;
  }

  .trainer-image {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .course-trainer {
    padding: 80px 0;
  }

  .trainer-name {
    font-size: 2rem;
  }

  .trainer-highlights {
    grid-template-columns: 1fr;
  }

  .trainer-image {
    width: 220px;

    height: 220px;
  }
}

/* ==========================================================
   COURSE CERTIFICATE
========================================================== */

.course-certificate {
  padding: 120px 0;

  background: #081321;
}

.certificate-preview {
  padding: 20px;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

  transition: 0.4s;
}

.certificate-preview:hover {
  transform: translateY(-8px);
}

.certificate-preview img {
  width: 100%;

  border-radius: 18px;
}

.certificate-content {
  padding-left: 40px;
}

.certificate-content h3 {
  color: #fff;

  font-size: 2.5rem;

  font-family: "Montserrat", sans-serif;

  font-weight: 700;

  margin-bottom: 20px;
}

.certificate-content p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  margin-bottom: 35px;
}

.certificate-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.certificate-features div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;
}

.certificate-features i {
  color: var(--accent);

  font-size: 1.1rem;
}

.certificate-content .btn {
  border-radius: 50px;

  padding: 15px 35px;
}

@media (max-width: 992px) {
  .certificate-content {
    padding-left: 0;

    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .course-certificate {
    padding: 80px 0;
  }

  .certificate-content h3 {
    font-size: 2rem;
  }

  .certificate-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   STUDENT TESTIMONIALS
========================================================== */

.student-testimonials {
  padding: 120px 0;

  background: linear-gradient(180deg, #071425, #0b1628);
}

.testimonial-card {
  height: 100%;

  padding: 35px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 229, 255, 0.3);

  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.12);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffd54a;

  margin-right: 4px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.75);

  line-height: 1.9;

  min-height: 140px;
}

.student-info {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 25px;
}

.student-info img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid rgba(0, 229, 255, 0.2);
}

.student-info h5 {
  color: #fff;

  margin-bottom: 5px;

  font-family: "Montserrat", sans-serif;
}

.student-info span {
  color: rgba(255, 255, 255, 0.6);

  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .student-testimonials {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card p {
    min-height: auto;
  }
}

/* ==========================================================
   COURSE FAQ
========================================================== */

.course-faq {
  padding: 120px 0;

  background: #081321;
}

.faq-accordion {
  max-width: 900px;

  margin: auto;
}

.faq-accordion .accordion-item {
  margin-bottom: 20px;

  border: none;

  overflow: hidden;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion .accordion-button {
  background: transparent;

  color: #fff;

  padding: 24px 30px;

  font-family: "Montserrat", sans-serif;

  font-weight: 600;

  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 229, 255, 0.08);

  color: var(--accent);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 25px 30px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  background: transparent;
}

@media (max-width: 768px) {
  .course-faq {
    padding: 80px 0;
  }

  .faq-accordion .accordion-button {
    padding: 20px;

    font-size: 0.95rem;
  }

  .faq-accordion .accordion-body {
    padding: 20px;
  }
}

/* ==========================================================
   FINAL CTA
========================================================== */

.course-final-cta {
  position: relative;

  padding: 120px 0;

  background: linear-gradient(180deg, #071425, #020817);

  overflow: hidden;
}

.course-final-cta::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  left: -250px;

  top: -250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
}

.course-final-cta::after {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  right: -200px;

  bottom: -200px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
}

/* ========================================== */

.cta-box {
  position: relative;

  z-index: 2;

  padding: 70px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-family: "Montserrat", sans-serif;

  color: #fff;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.3;
}

.cta-title span {
  color: var(--accent);
}

.cta-description {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.9;
}

.cta-points {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 35px;
}

.cta-points div {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  padding: 15px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-points i {
  color: var(--accent);
}

.cta-actions {
  padding: 35px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-actions .btn {
  padding: 15px;

  border-radius: 50px;

  font-weight: 600;
}

.btn-success {
  background: #25d366;

  border: none;
}

.btn-success:hover {
  background: #20bd5a;
}

@media (max-width: 992px) {
  .cta-box {
    padding: 40px;
  }

  .cta-actions {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .course-final-cta {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-points {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 30px;
  }
}
/* ==========================================================
   FOOTER
========================================================== */

.academy-footer {
  position: relative;

  padding: 90px 0 25px;

  background: #050d18;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  overflow: hidden;
}

.footer-logo {
  height: 65px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  max-width: 360px;
}

.academy-footer h5 {
  color: #fff;

  font-family: "Montserrat", sans-serif;

  margin-bottom: 25px;

  font-weight: 700;
}

.academy-footer ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.academy-footer ul li {
  margin-bottom: 15px;
}

.academy-footer ul li a {
  color: rgba(255, 255, 255, 0.72);

  text-decoration: none;

  transition: 0.3s;
}

.academy-footer ul li a:hover {
  color: var(--accent);

  padding-left: 6px;
}

.footer-contact li {
  display: flex;

  gap: 12px;

  color: rgba(255, 255, 255, 0.72);
}

.footer-contact i {
  color: var(--accent);

  margin-top: 3px;
}

.footer-social {
  display: flex;

  gap: 15px;

  margin-top: 30px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  text-decoration: none;

  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--accent);

  color: #071425;

  transform: translateY(-6px);
}

.footer-divider {
  margin: 60px 0 25px;

  border-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);

  margin: 0;
}

.footer-bottom-links {
  display: flex;

  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;

    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ==========================================================
   COURSES PAGE HERO
========================================================== */

.page-hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #071425, #020817);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -220px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -220px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
}

/* ==========================================
   Hero Title
========================================== */

.page-title {
  font-family: "Montserrat", sans-serif;

  font-size: 4rem;

  font-weight: 800;

  color: #fff;

  line-height: 1.2;

  margin-bottom: 25px;
}

.page-title span {
  color: var(--accent);
}

.page-description {
  color: rgba(255, 255, 255, 0.75);

  font-size: 1.1rem;

  line-height: 1.9;

  max-width: 650px;
}

/* ==========================================
   Hero Features
========================================== */

.course-highlights {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;
}

.course-highlights div {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: 0.35s;
}

.course-highlights div:hover {
  background: rgba(0, 229, 255, 0.1);

  border-color: rgba(0, 229, 255, 0.35);

  transform: translateY(-4px);
}

.course-highlights i {
  color: var(--accent);
}

/* ==========================================
   Hero Card
========================================== */

.hero-card {
  position: relative;

  background: #09111f;

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.hero-card-header {
  display: flex;

  gap: 8px;

  padding: 18px;

  background: #111827;
}

.hero-card-header span {
  width: 12px;

  height: 12px;

  border-radius: 50%;
}

.hero-card-header span:nth-child(1) {
  background: #ff605c;
}

.hero-card-header span:nth-child(2) {
  background: #ffbd44;
}

.hero-card-header span:nth-child(3) {
  background: #00ca4e;
}

.hero-card pre {
  margin: 0;

  padding: 35px;

  color: #8be9fd;

  font-size: 1rem;

  line-height: 2;

  overflow: auto;
}

/* ==========================================
   Course Strip
========================================== */

.course-strip {
  padding: 45px 0;

  background: #081321;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.course-strip h3 {
  color: var(--accent);

  font-size: 2.8rem;

  font-family: "Montserrat", sans-serif;

  font-weight: 800;

  margin-bottom: 10px;
}

.course-strip span {
  color: rgba(255, 255, 255, 0.75);

  font-size: 1rem;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 992px) {
  .page-hero {
    padding: 150px 0 80px;
  }

  .page-title {
    font-size: 3rem;
  }

  .hero-card {
    margin-top: 60px;
  }

  .course-strip .col-md-3 {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .course-highlights {
    flex-direction: column;
  }

  .course-highlights div {
    justify-content: center;
  }

  .hero-card pre {
    padding: 25px;

    font-size: 0.9rem;
  }

  .course-strip {
    padding: 30px 0;
  }

  .course-strip h3 {
    font-size: 2rem;
  }
}

/* ==========================================================
   COURSE FILTER
========================================================== */

.course-filter-section {
  padding: 70px 0;

  background: #09111f;
}

.filter-wrapper {
  padding: 30px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-box {
  position: relative;
}

.filter-box i {
  position: absolute;

  top: 50%;

  left: 18px;

  transform: translateY(-50%);

  color: var(--accent);
}

.filter-box input {
  padding-left: 50px;
}

.filter-wrapper .form-control,
.filter-wrapper .form-select {
  height: 56px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  border-radius: 15px;

  box-shadow: none;
}

.filter-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.filter-wrapper .form-select {
  cursor: pointer;
}

.filter-wrapper .form-control:focus,
.filter-wrapper .form-select:focus {
  border-color: var(--accent);

  background: rgba(255, 255, 255, 0.08);
}

.filter-wrapper .btn {
  height: 56px;

  border-radius: 15px;
}
