/* Courses Section Styles */
.courses-section {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-title h2 span {
  color: #00f6ff;
}

.section-title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

body.light-mode .section-title p {
  color: rgba(26, 7, 22, 0.8);
}

.courses-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 10px;
}

.courses-nav-btn {
  background-color: #1f0c1a;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
}

body.light-mode .courses-nav-btn {
  background-color: #f0f0f0;
  color: #1a0716;
}

.courses-nav-btn.active {
  background-color: #00f6ff;
  color: white;
}

/* Course Cards */
.course-card {
  background-color: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.light-mode .course-card {
  background-color: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-image-container {
  position: relative;
  height: 270px;
  overflow: hidden;
  /* background: linear-gradient(45deg, #330726, #25081f); */
  background-color: #363936;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-icon {
  font-size: 60px;
  color: white;
}

.course-icon i {
  font-size: 60px;
  color: white;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ff8c00;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

.course-title {
  padding: 0 20px;
  color: #00f6ff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.course-subtitle {
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.course-details {
  padding: 0 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 15px 0;
  font-size: 0.9rem;
  flex-grow: 1;
}

.course-actions {
  text-align: center;
  margin-top: auto;
}

body.light-mode .course-subtitle {
  color: rgba(26, 7, 22, 0.8);
}

.course-info {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  background-color: #1d071a;
}

body.light-mode .course-info {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #eee;
}

.course-stats {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

body.light-mode .course-stats {
  color: rgba(26, 7, 22, 0.7);
}

.course-stat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffc107;
  font-weight: bold;
  font-size: 0.9rem;
}

.course-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

body.light-mode .course-description {
  color: rgba(26, 7, 22, 0.7);
}

.course-actions {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.btn-view-details {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s;
}

body.light-mode .btn-view-details {
  border: 1px solid rgba(26, 7, 22, 0.3);
  color: #1a0716;
}

.btn-view-details:hover {
  border-color: #00f6ff;
  color: #00f6ff;
}

.btn-brochure {
  background-color: #00f6ff;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-brochure:hover {
  background-color: #00f6ff;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #00f6ff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 0, 102, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-icon i {
  color: #ff0066;
  font-size: 24px;
}

.feature-box {
  background-color: rgb(59 53 53 / 80%);
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  transition: transform 0.3s;
}
.w-488 {
  height: 488px;
  height: 100%;
  object-fit: cover;
}

.fs-98 {
  font-size: 70px;
}
.fs-30 {
  font-size: 16px;
}

.btn.gray:hover {
  background-color: #fc5200 !important;
  cursor: pointer;
}

body.bg-white #course {
  background-color: white !important;
}
body.bg-white .swiper-vertical {
  background-color: white !important;
}

body.bg-white .gradient-text {
  background: none;
  color: black;
  -webkit-text-fill-color: black;
}

body.bg-white .custom-gradient-heading-1 {
  background: none;
  color: black;
  -webkit-text-fill-color: black;
}

body.bg-white .custom-highlight-11 {
  background: none;
  color: black;
  -webkit-text-fill-color: black;
}
body.bg-white .custom-gradient-heading {
  background: none;
  color: black;
  -webkit-text-fill-color: black;
}
body.bg-white .custom-highlight {
  background: none;
  background-image: linear-gradient(
    to left,
    rgb(132, 83, 210) 47px,
    rgb(0, 71, 255) 131.6px,
    rgb(0, 120, 194) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.bg-white .custom-gradient-heading-11 {
  background: linear-gradient(
    to left,
    rgb(132, 83, 210) 47px,
    rgb(0, 71, 255) 131.6px,
    rgb(0, 120, 194) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body.bg-white .custom-highlight-1 {
  background: none;
  color: black;
  -webkit-text-fill-color: black;
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .fs-98 {
    font-size: 45px !important;
  }
}

@media (max-width: 600px) {
  .box_padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .fs-98 {
    font-size: 22px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
  .fs-30 {
    font-size: 14px;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .about_image {
    margin-top: 40px;
  }
  section {
    padding: 40px 0px !important;
  }

  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .m-sm-20 {
    margin: 0 20px !important;
  }

  .about_text {
    margin-bottom: 0px !important;
  }
  .footer {
    padding-bottom: 0px !important;
  }
  .blog_post .blog_content h5 > a,
  .blog_post .blog_content .h5 > a {
    font-size: 1.4rem !important;
  }
  .blog_post .blog_content p {
    font-size: 14px !important;
  }
  .blog_post {
    height: 400px !important;
  }
  .about_text_inner {
    padding-left: 0px !important;
  }
  .icon_box_flex {
    margin-bottom: 0px !important;
  }
  .mlr-sm-10 {
    padding-left: 10px !important;
  }
  .md-sm-none {
    display: none !important;
  }
  .header .header_inner {
    padding: 1rem 0 !important;
  }
  .theme_slider_2 .swiper-slide-active .slider .slide_content {
    max-width: 85% !important;
  }
  .mlr-sm-100 {
    margin: 0 10px !important;
  }
}

.p-white {
  color: #dcdada;
}
.fs_15 {
  font-size: 15px !important;
}

body.bg-dark.bg-white .aside_info_wrapper .aside_info_inner .p-white {
  color: #000000;
}

body.bg-white .highlight {
  background: none;
  background-image: linear-gradient(
    to left,
    rgb(132, 83, 210) 47px,
    rgb(0, 71, 255) 131.6px,
    rgb(0, 120, 194) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wrapper {
  overflow-x: hidden !important;
}
