* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

.text-orange {
  color: #ff6b00;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #8892b0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
}
.btn-primary {
  background-color: #ff6b00;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  background-color: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline:hover {
  background-color: #ffffff;
  color: #0a192f;
  transform: translateY(-2px);
}
.btn-text {
  color: #ff6b00;
  font-weight: 700;
  padding: 0;
  background: none;
  border: none;
}
.btn-text:hover {
  text-decoration: underline;
  color: #e65100;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card:hover .card-img-top img {
  transform: scale(1.05);
}
.card-img-top {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-img-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover .card-img-top::after {
  opacity: 1;
}
.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0a192f;
}
.card-text {
  color: #8892b0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.card-glass .card-title {
  color: #ffffff;
}
.card-glass .card-text {
  color: rgba(255, 255, 255, 0.8);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.section {
  padding: 4rem 0;
}
.section-light {
  background-color: #f8f9fa;
}
.section-white {
  background-color: #ffffff;
}
.section-dark {
  background-color: #0a192f;
  color: #ffffff;
}

.student-spotlight {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.student-spotlight .section-title {
  color: #0a192f;
  margin-bottom: 0.5rem;
}
.student-spotlight .section-subtitle {
  color: #8892b0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.student-spotlight .spotlight-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.student-spotlight .spotlight-slider {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.student-spotlight .spotlight-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.student-spotlight .spotlight-slide.active {
  display: grid;
  opacity: 1;
  animation: slideIn 0.6s ease-out;
}
@media (min-width: 768px) {
  .student-spotlight .spotlight-slide {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}
.student-spotlight .student-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.student-spotlight .student-image-wrapper .student-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .student-spotlight .student-image-wrapper .student-img {
    width: 350px;
    height: 350px;
    border-radius: 30px;
  }
}
.student-spotlight .student-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: #ff6b00;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}
.student-spotlight .student-content {
  text-align: center;
}
@media (min-width: 768px) {
  .student-spotlight .student-content {
    text-align: left;
  }
}
.student-spotlight .student-content .quote-icon {
  font-size: 3rem;
  color: rgba(10, 25, 47, 0.1);
  margin-bottom: 1rem;
  display: block;
}
.student-spotlight .student-content .student-quote {
  font-family: "Caveat", cursive;
  font-size: 1.8rem;
  color: #0a192f;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .student-spotlight .student-content .student-quote {
    font-size: 2.2rem;
  }
}
.student-spotlight .student-content .student-info {
  margin-bottom: 2rem;
}
.student-spotlight .student-content .student-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.25rem;
}
.student-spotlight .student-content .student-info p {
  color: #8892b0;
  font-size: 0.95rem;
}
.student-spotlight .student-content .achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .student-spotlight .student-content .achievements {
    justify-content: flex-start;
  }
}
.student-spotlight .student-content .achievements .achievement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.student-spotlight .student-content .achievements .achievement-item i {
  color: #ff6b00;
  font-size: 1.2rem;
}
.student-spotlight .student-content .achievements .achievement-item span {
  font-weight: 600;
  color: #0a192f;
  font-size: 0.9rem;
}
.student-spotlight .slider-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .student-spotlight .slider-controls {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 0;
  }
}
.student-spotlight .slider-controls .control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0a192f;
  background: transparent;
  color: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.student-spotlight .slider-controls .control-btn:hover {
  background: #0a192f;
  color: #ffffff;
  transform: scale(1.1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.header .logo img {
  height: 45px;
  width: auto;
  display: block;
}
.header .logo span {
  color: #ff6b00;
}
.header .nav {
  display: none;
}
@media (min-width: 992px) {
  .header .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.header .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 1rem;
}
.header .nav-link:hover, .header .nav-link.active {
  color: #ff6b00;
}
.header .mobile-toggle {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .header .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a192f;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .nav-link {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #ffffff;
}
.mobile-menu .nav-link:hover {
  color: #ff6b00;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(17, 34, 64, 0.9) 100%), url("../../uploaded_image_1764974073269.jpg") no-repeat center center/cover;
  color: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}
.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1;
}
.hero-title span {
  color: #ff6b00;
  display: block;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: none;
}
@media (min-width: 992px) {
  .hero-visual {
    display: block;
    position: relative;
  }
  .hero-visual img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.footer {
  background-color: #0a192f;
  color: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-brand .logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-brand .logo span {
  color: #ff6b00;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer-links ul li a:hover {
  color: #ff6b00;
  padding-left: 5px;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #ff6b00;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.skills-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  overflow: hidden;
}
.skills-section .skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .skills-section .skills-grid {
    grid-template-columns: 1fr 2fr;
  }
}
.skills-section .skills-text {
  text-align: center;
}
@media (min-width: 992px) {
  .skills-section .skills-text {
    text-align: left;
    max-width: 350px;
  }
}
.skills-section .skills-text .skills-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #0a192f;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.skills-section .skills-text .skills-subtitle {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.1rem;
  color: #8892b0;
  line-height: 1.6;
}
.skills-section .skills-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .skills-section .skills-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .skills-section .skills-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.skills-section .skill-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.skills-section .skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 0, 0.1);
}
.skills-section .skill-card:hover .skill-card-img img {
  transform: scale(1.03);
}
.skills-section .skill-card:hover .skill-arrow {
  transform: translateX(5px);
  color: #ff6b00;
}
.skills-section .skill-card-img {
  height: 160px;
  overflow: hidden;
}
.skills-section .skill-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.skills-section .skill-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.skills-section .skill-card .skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #8892b0;
  margin-bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}
.skills-section .skill-card-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a192f;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.skills-section .skill-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.skills-section .skill-card .skill-arrow {
  font-size: 1.2rem;
  color: #8892b0;
  transition: all 0.3s ease;
}

.courses {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.courses .course-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.courses .course-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.courses .course-card:hover .course-img img {
  transform: scale(1.1);
}
.courses .course-card .course-img {
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.courses .course-card .course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.courses .course-card .course-content {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.courses .course-card .course-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0a192f;
  line-height: 1.3;
}
.courses .course-card .course-content p {
  font-size: 0.9rem;
  color: #8892b0;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.courses .course-card .course-content .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  margin-top: auto;
}
.courses .course-card .course-content .course-meta span {
  font-size: 0.85rem;
  color: #8892b0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.courses .course-card .course-content .course-meta .btn-link {
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.9rem;
}
.courses .course-card .course-content .course-meta .btn-link:hover {
  color: #0a192f;
}

.mesh-skills-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.5) 0%, white 100%);
  position: relative;
  overflow: hidden;
}
.mesh-skills-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.mesh-skills-section .container {
  position: relative;
  z-index: 1;
}
.mesh-skills-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 0.5rem;
}
.mesh-skills-section .section-subtitle {
  font-size: 1.1rem;
  color: #8892b0;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.mesh-skills-section .mb-5 {
  margin-bottom: 3rem;
}
.mesh-skills-section .mesh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .mesh-skills-section .mesh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .mesh-skills-section .mesh-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mesh-skills-section .mesh-card {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
}
.mesh-skills-section .mesh-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.3);
  z-index: 2;
}
.mesh-skills-section .mesh-card:hover .mesh-icon {
  background: #ff6b00;
  color: #ffffff;
  transform: rotateY(180deg);
}
.mesh-skills-section .mesh-card:hover .mesh-link {
  color: #ff6b00;
  padding-left: 5px;
}
.mesh-skills-section .mesh-card .mesh-icon {
  width: 50px;
  height: 50px;
  background: rgba(10, 25, 47, 0.05);
  color: #0a192f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}
.mesh-skills-section .mesh-card .mesh-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 0.75rem;
}
.mesh-skills-section .mesh-card .mesh-desc {
  font-size: 0.95rem;
  color: #8892b0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.mesh-skills-section .mesh-card .mesh-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a192f;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}
.mesh-skills-section .mesh-card .mesh-link i {
  font-size: 1rem;
}

.career-pathways {
  padding: 5rem 0;
  background-color: #ffffff;
}
.career-pathways .pathway-card {
  padding: 2rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.career-pathways .pathway-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.1);
  transform: scale(1.03);
}
.career-pathways .pathway-card:hover .icon-box {
  background: #ff6b00;
  color: #ffffff;
  transform: rotateY(180deg);
}
.career-pathways .pathway-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}
.career-pathways .pathway-card h3 {
  font-size: 1.2rem;
  color: #0a192f;
  margin-bottom: 0.5rem;
}
.career-pathways .pathway-card p {
  font-size: 0.9rem;
  color: #8892b0;
  margin-bottom: 1rem;
}
.career-pathways .pathway-card .learn-more {
  font-size: 0.85rem;
  color: #ff6b00;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.career-pathways .pathway-card:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works {
  padding: 5rem 0;
  background-color: #112240;
  color: #ffffff;
  position: relative;
}
.how-it-works .step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}
.how-it-works .step-card .step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ff6b00;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.how-it-works .step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.how-it-works .step-card p {
  color: rgba(255, 255, 255, 0.7);
}
.how-it-works .step-card .step-number {
  position: absolute;
  top: 0;
  right: 20%;
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.course-hero {
  background-color: #0a192f;
  background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%), url("https://images.unsplash.com/photo-1587620962725-abab7fe55159?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 8rem 0 6rem;
  color: #ffffff;
  position: relative;
}
.course-hero .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-hero .hero-text {
  max-width: 60%;
}
@media (max-width: 768px) {
  .course-hero .hero-text {
    max-width: 100%;
  }
}
.course-hero .badges {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.course-hero .badges .badge {
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.course-hero .badges .badge.badge-warning {
  background-color: #f1c40f;
  color: #0a192f;
}
.course-hero .badges .badge.badge-light {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.course-hero .course-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .course-hero .course-title {
    font-size: 2.5rem;
  }
}
.course-hero .course-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.course-hero .course-meta {
  font-size: 0.95rem;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.course-hero .course-meta .rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-hero .course-meta .rating .rating-val {
  font-weight: 700;
  color: #f1c40f;
  font-size: 1.1rem;
}
.course-hero .course-meta .rating .stars {
  color: #f1c40f;
  display: flex;
  gap: 2px;
}
.course-hero .course-meta .rating .rating-count {
  opacity: 0.8;
  font-size: 0.85rem;
}
.course-hero .course-meta i {
  margin-right: 0.4rem;
}

.hero-actions-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .hero-actions-mobile {
    display: block;
  }
}
.hero-actions-mobile .price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.relative-container {
  position: relative;
  display: flex;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .relative-container {
    flex-direction: column;
    padding-top: 2rem;
  }
}

.course-cta-card {
  position: absolute;
  top: -200px;
  right: 0;
  width: 360px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  overflow: hidden;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .course-cta-card {
    position: static;
    width: 100%;
    margin-right: 0;
    top: 0;
    margin-bottom: 2rem;
  }
}
.course-cta-card .preview-video {
  position: relative;
  height: 200px;
  cursor: pointer;
}
.course-cta-card .preview-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-cta-card .preview-video .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.3s ease;
}
.course-cta-card .preview-video .play-overlay i {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.course-cta-card .preview-video .play-overlay span {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.course-cta-card .preview-video .play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}
.course-cta-card .preview-video .play-overlay:hover i {
  transform: scale(1.1);
}
.course-cta-card .cta-body {
  padding: 2rem;
}
.course-cta-card .cta-body .price-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.course-cta-card .cta-body .price-area .current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a192f;
}
.course-cta-card .cta-body .price-area .original-price {
  text-decoration: line-through;
  color: #8892b0;
  font-size: 1.1rem;
}
.course-cta-card .cta-body .price-area .discount {
  font-size: 1rem;
  font-weight: 600;
  color: #8892b0;
}
.course-cta-card .cta-body .promo-text {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.course-cta-card .cta-body .promo-text i {
  margin-right: 5px;
}
.course-cta-card .cta-body .btn-block {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
}
.course-cta-card .cta-body .btn-lg {
  padding: 1rem;
  font-size: 1.1rem;
}
.course-cta-card .cta-body .btn-outline {
  background: transparent;
  border: 1px solid #0a192f;
  color: #0a192f;
  padding: 0.8rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}
.course-cta-card .cta-body .btn-outline:hover {
  background: rgba(10, 25, 47, 0.05);
}
.course-cta-card .cta-body .guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: #8892b0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.course-cta-card .cta-body .course-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-cta-card .cta-body .course-includes li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #0a192f;
  display: flex;
  align-items: flex-start;
}
.course-cta-card .cta-body .course-includes li i {
  margin-right: 0.8rem;
  width: 20px;
  text-align: center;
}
.course-cta-card .cta-body .share-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.course-cta-card .cta-body .share-actions a {
  color: #0a192f;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.course-cta-card .cta-body .share-actions a:hover {
  text-decoration: underline;
}

.course-main-content {
  flex: 1;
  max-width: 65%;
}
@media (max-width: 768px) {
  .course-main-content {
    max-width: 100%;
  }
}

.section-block {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #eee;
}

.section-heading {
  font-size: 1.8rem;
  font-family: "Bebas Neue", sans-serif;
  color: #0a192f;
  margin-bottom: 1.5rem;
}

.skills-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .skills-grid-small {
    grid-template-columns: 1fr;
  }
}
.skills-grid-small .skill-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #8892b0;
}
.skills-grid-small .skill-item i {
  margin-top: 3px;
  color: #ff6b00;
  font-weight: bold;
}

.description-content.collapsed {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.description-content.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, #ffffff);
}
.description-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #8892b0;
}
.description-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.description-content ul li {
  margin-bottom: 0.5rem;
  color: #8892b0;
}

.btn-text-expand {
  background: none;
  border: none;
  color: #ff6b00;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-text-expand:hover {
  opacity: 0.8;
}
.btn-text-expand i {
  transition: transform 0.3s;
}
.btn-text-expand.expanded i {
  transform: rotate(180deg);
}

.accordion .accordion-item {
  border: 1px solid #eee;
  margin-bottom: -1px;
}
.accordion .accordion-item:first-child {
  border-radius: 8px 8px 0 0;
}
.accordion .accordion-item:last-child {
  border-radius: 0 0 8px 8px;
  margin-bottom: 0;
}
.accordion .accordion-header {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.accordion .accordion-header:hover {
  background: #f0f2f5;
}
.accordion .accordion-header .header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: #0a192f;
}
.accordion .accordion-header .header-left .toggle-icon {
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.accordion .accordion-header .header-right {
  font-size: 0.9rem;
  color: #8892b0;
}
.accordion .accordion-header.active .toggle-icon {
  transform: rotate(180deg);
}
.accordion .accordion-body {
  display: none;
  padding: 0;
  background: #ffffff;
}
.accordion .accordion-body.active {
  display: block;
}
.accordion .accordion-body .lesson-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-body .lesson-list .lesson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.accordion .accordion-body .lesson-list .lesson-item:last-child {
  border-bottom: none;
}
.accordion .accordion-body .lesson-list .lesson-item .lesson-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #0a192f;
}
.accordion .accordion-body .lesson-list .lesson-item .lesson-left i {
  color: #8892b0;
  font-size: 1rem;
}
.accordion .accordion-body .lesson-list .lesson-item .lesson-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #8892b0;
}
.accordion .accordion-body .lesson-list .lesson-item .lesson-right .preview-text {
  color: #ff6b00;
  font-weight: 600;
  cursor: pointer;
}
.accordion .accordion-body .lesson-list .lesson-item .lesson-right .preview-text:hover {
  text-decoration: underline;
}

.instructor-card .instructor-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .instructor-card .instructor-header {
    flex-direction: column;
    text-align: center;
  }
}
.instructor-card .instructor-header .instructor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.instructor-card .instructor-header .instructor-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #ff6b00;
  margin-bottom: 0.2rem;
}
.instructor-card .instructor-header .instructor-info .role {
  font-weight: 500;
  color: #0a192f;
  margin-bottom: 0.8rem;
}
.instructor-card .instructor-header .instructor-info .instructor-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #8892b0;
}
.instructor-card .instructor-header .instructor-info .instructor-stats i {
  color: #f1c40f;
}
.instructor-card .instructor-bio {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #8892b0;
}
.instructor-card .instructor-social {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .instructor-card .instructor-social {
    justify-content: center;
  }
}
.instructor-card .instructor-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a192f;
  transition: all 0.3s;
}
.instructor-card .instructor-social a:hover {
  background: #0a192f;
  color: #ffffff;
}

.review-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .review-stats {
    flex-direction: column;
    gap: 2rem;
  }
}
.review-stats .avg-rating {
  text-align: center;
}
.review-stats .avg-rating .number {
  font-size: 4rem;
  font-weight: 700;
  color: #0a192f;
  line-height: 1;
}
.review-stats .avg-rating .stars {
  color: #f1c40f;
  margin: 0.5rem 0;
}
.review-stats .avg-rating p {
  color: #8892b0;
  font-size: 0.9rem;
}
.review-stats .rating-bars {
  flex: 1;
  width: 100%;
}
.review-stats .rating-bars .rating-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #0a192f;
}
.review-stats .rating-bars .rating-bar-row .bar-container {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.review-stats .rating-bars .rating-bar-row .bar-container .bar-fill {
  height: 100%;
  background: #ff6b00;
}

.reviews-list .review-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.reviews-list .review-item:last-child {
  border-bottom: none;
}
.reviews-list .review-item .review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.reviews-list .review-item .review-user .user-avatar {
  width: 40px;
  height: 40px;
  background: #0a192f;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 1rem;
}
.reviews-list .review-item .review-user .user-info {
  flex: 1;
}
.reviews-list .review-item .review-user .user-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #0a192f;
}
.reviews-list .review-item .review-user .user-info .stars-small {
  font-size: 0.8rem;
  color: #f1c40f;
}
.reviews-list .review-item .review-user .review-date {
  font-size: 0.85rem;
  color: #8892b0;
}
.reviews-list .review-item .review-text {
  color: #8892b0;
  line-height: 1.5;
}

.pricing-section {
  padding: 3rem 0 6rem;
  background: #f8f9fa;
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-section .pricing-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid transparent;
  transition: transform 0.3s;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-section .pricing-card.popular {
  border: 2px solid #ff6b00;
}
.pricing-section .pricing-card.popular .badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b00;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-section .pricing-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #0a192f;
  margin-bottom: 0.5rem;
}
.pricing-section .pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 1.5rem;
}
.pricing-section .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.pricing-section .pricing-card ul li {
  margin-bottom: 0.8rem;
  color: #8892b0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-section .pricing-card ul li i {
  color: #2ecc71;
}

.related-courses {
  padding: 3rem 0;
}

.footer-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a192f 0%, rgb(18.9473684211, 47.3684210526, 89.0526315789) 100%);
  color: #ffffff;
}
.footer-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.courses-page {
  background-color: #f8f9fa;
}

.mini-hero {
  background: linear-gradient(135deg, rgb(5.5263157895, 13.8157894737, 25.9736842105) 0%, #0a192f 100%);
  padding: 120px 0 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.mini-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.mini-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mini-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  font-weight: 300;
}

.course-filters-section {
  margin-top: -30px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.filter-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.filter-bar .filter-left,
.filter-bar .filter-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-group,
.filter-group {
  position: relative;
  display: flex;
  align-items: center;
}
.search-group i,
.filter-group i {
  position: absolute;
  color: #0a192f;
  opacity: 0.6;
  pointer-events: none;
}
.search-group .bi-search,
.filter-group .bi-search {
  left: 1rem;
}
.search-group .dropdown-icon,
.filter-group .dropdown-icon {
  right: 1rem;
}
.search-group input,
.search-group select,
.filter-group input,
.filter-group select {
  background: #f1f3f5;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.95rem;
  color: #0a192f;
  transition: all 0.3s ease;
  appearance: none;
  min-width: 200px;
  cursor: pointer;
}
.search-group input:focus,
.search-group select:focus,
.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.search-group input::placeholder,
.search-group select::placeholder,
.filter-group input::placeholder,
.filter-group select::placeholder {
  color: rgb(36.8421052632, 92.1052631579, 173.1578947368);
}
.search-group select,
.filter-group select {
  padding-right: 2.5rem;
  padding-left: 1.5rem;
}

.sort-label {
  font-weight: 500;
  color: #0a192f;
  margin-right: 0.5rem;
  display: none;
}
@media (min-width: 768px) {
  .sort-label {
    display: inline-block;
  }
}

.course-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.course-tabs .tab-btn {
  background: transparent;
  border: 1px solid rgba(10, 25, 47, 0.2);
  color: #0a192f;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Ubuntu", sans-serif;
}
.course-tabs .tab-btn:hover {
  border-color: #ff6b00;
  color: #ff6b00;
  transform: translateY(-2px);
}
.course-tabs .tab-btn.active {
  background: #ff6b00;
  border-color: #ff6b00;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.course-grid-section {
  padding: 3rem 0;
  min-height: 400px;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination-container .page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e9ecef;
  color: #0a192f;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-container .page-btn:hover:not(:disabled) {
  border-color: #ff6b00;
  color: #ff6b00;
}
.pagination-container .page-btn.active {
  background: #0a192f;
  border-color: #0a192f;
  color: #ffffff;
}
.pagination-container .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.recommend-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}
.recommend-section .section-title {
  color: #0a192f;
  margin-bottom: 2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-bar .filter-left,
  .filter-bar .filter-right {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .filter-bar .search-group,
  .filter-bar .filter-group {
    width: 100%;
  }
  .filter-bar .search-group input,
  .filter-bar .search-group select,
  .filter-bar .filter-group input,
  .filter-bar .filter-group select {
    width: 100%;
    min-width: 0;
  }
  .mini-hero-title {
    font-size: 2.5rem;
  }
}
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-warning {
  color: #f1c40f;
}

.text-dark {
  color: #0a192f;
}

.text-muted {
  color: #8892b0;
}

.mt-3 {
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
}
.badge.bg-light {
  background-color: #f8f9fa;
}
.badge.border {
  border: 1px solid #dee2e6;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-description {
  font-size: 0.9rem;
  color: #8892b0;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.course-price .price-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a192f;
}

.btn-view {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #ff6b00;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-view i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.btn-view:hover {
  background: rgb(214.2, 89.88, 0);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}
.btn-view:hover i {
  transform: translateX(5px);
}

.auth-page {
  min-height: 100vh;
  padding-top: 80px;
  background-color: #0a192f;
  font-family: "Ubuntu", sans-serif;
  color: #ffffff;
}

.auth-container {
  display: flex;
  min-height: calc(100vh - 80px);
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    height: auto;
  }
}

.auth-visual {
  flex: 1;
  background: linear-gradient(135deg, #0a192f 0%, rgb(5.5263157895, 13.8157894737, 25.9736842105) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  overflow: hidden;
  z-index: 1;
}
.auth-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
  z-index: -1;
}
.auth-visual .visual-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.auth-visual .visual-headline {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .auth-visual .visual-headline {
    font-size: 3rem;
  }
}
.auth-visual .visual-subtext {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #8892b0;
}
@media (max-width: 768px) {
  .auth-visual {
    flex: none;
    padding: 3rem 2rem;
    min-height: 250px;
    align-items: center;
    text-align: center;
  }
}

.visual-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visual-decoration .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 107, 0, 0.2), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(5px);
  animation: floatParticle 10s infinite ease-in-out;
}
.visual-decoration .shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  animation-duration: 12s;
}
.visual-decoration .shape-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 10%;
  animation-duration: 8s;
  animation-delay: 2s;
  background: rgba(255, 255, 255, 0.03);
}
.visual-decoration .shape-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 35%;
  animation-duration: 15s;
  animation-delay: 1s;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
}
.auth-form-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: rgb(11.7894736842, 29.4736842105, 55.4105263158);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .auth-form-wrapper {
    flex: none;
    border-left: none;
    background-color: #0a192f;
  }
}

.auth-card {
  background: rgba(17, 34, 64, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.auth-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.social-login .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-login .btn-social i {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}
.social-login .btn-social:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin: 2rem 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-divider::before {
  margin-right: 1rem;
}
.auth-divider::after {
  margin-left: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-wrapper {
  position: relative;
}
.input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  font-size: 1.2rem;
  transition: color 0.3s;
  z-index: 2;
}
.input-wrapper .form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(10, 25, 47, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.input-wrapper .form-input:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
  background: rgba(10, 25, 47, 0.8);
}
.input-wrapper .form-input:not(:placeholder-shown) + .floating-label, .input-wrapper .form-input:focus + .floating-label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  background: #112240;
  padding: 0 5px;
  color: #ff6b00;
}
.input-wrapper select.form-input {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.input-wrapper .floating-label {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border-radius: 4px;
}
.input-wrapper .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  cursor: pointer;
  z-index: 2;
}
.input-wrapper .toggle-password:hover {
  color: #ffffff;
}

.validation-error {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
  align-items: center;
}
.validation-error::before {
  content: "\f332";
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
}

.password-strength {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 0.8rem;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.password-strength .fill {
  height: 100%;
  width: 0;
  background: #ff4d4d;
  transition: all 0.3s ease;
}
.password-strength .strength-text {
  position: absolute;
  right: 0;
  top: -1.75rem;
  font-size: 0.75rem;
  color: #8892b0;
  display: none;
}

.password-hints {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.password-hints li {
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}
.password-hints li.valid {
  color: #ff6b00;
}

.btn-register-submit {
  margin-top: 1rem;
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  background: linear-gradient(135deg, #ff6b00 0%, rgb(204, 85.6, 0) 100%);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}
.btn-register-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
}
.auth-footer p {
  color: #8892b0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.auth-footer a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
.auth-footer a.link-animate::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #ff6b00;
  transition: width 0.3s;
}
.auth-footer a.link-animate:hover::after {
  width: 100%;
}
.auth-footer a:hover {
  color: #ff6b00;
}

.login-section {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 80vh;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.login-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.login-card h2 {
  color: #0a192f;
  margin-bottom: 0.5rem;
}
.login-card .text-muted {
  color: #8892b0;
  font-size: 0.95rem;
}

.form-group {
  position: relative;
}
.form-group .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a192f;
  margin-bottom: 0.5rem;
  display: block;
}
.form-group .input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.form-group .input-icon {
  position: absolute;
  left: 15px;
  color: #8892b0;
  z-index: 10;
}
.form-group .form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group .form-control:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.forgot-link {
  font-size: 0.85rem;
  color: #ff6b00;
  text-decoration: none;
}
.forgot-link:hover {
  text-decoration: underline;
}

.primary-link {
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
}
.primary-link:hover {
  text-decoration: underline;
}

.w-100 {
  width: 100%;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

/*# sourceMappingURL=main.css.map */
