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

body {
  background-color: #FFFFFF;
  color: #2C3E50;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none !important;
}
a:hover, a:focus, a:active, a:visited {
  text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  margin: 2rem 0;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  section {
    margin: 4rem 0;
  }
}

section:first-of-type {
  margin-top: 0;
}

h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2C3E50;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: #E67E22;
  border-radius: 2px;
}
@media (min-width: 768px) {
  h2:after {
    bottom: -8px;
    width: 60px;
  }
}

.btn-modern {
  background-color: #FFFFFF;
  color: #E67E22;
  border: 1px solid #DEE2E6;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .btn-modern {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
.btn-modern:hover {
  background-color: #F8F9FA;
  border-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.btn-modern:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

.card {
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.card .card-img-top {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
@media (min-width: 768px) {
  .card .card-img-top {
    height: 200px;
  }
}
.card .card-body {
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .card .card-body {
    padding: 2rem 1.5rem;
  }
}
.card .btn-modern {
  width: 100%;
  margin-top: 1.5rem;
}

.hero-carousel {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-carousel {
    height: 500px;
    margin-bottom: 2rem;
  }
}
.hero-carousel .carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-carousel .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.6);
  z-index: 2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.hero-carousel .hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero-carousel .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
}

.hero-description {
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.95rem, 3vw, 1.4rem);
}

.hero-carousel.home-hero {
  height: 350px;
}
@media (min-width: 768px) {
  .hero-carousel.home-hero {
    height: 400px;
  }
}
.hero-carousel.home-hero .hero-overlay {
  background: rgba(44, 62, 80, 0.7);
}
.hero-carousel.home-hero .hero-overlay .container {
  max-width: 800px;
  padding: 0 1rem;
}
.hero-carousel.home-hero .hero-overlay .hero-title {
  font-size: clamp(2rem, 7vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease-out;
}
.hero-carousel.home-hero .hero-overlay .hero-description {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-carousel.home-hero .hero-overlay .btn-modern {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-size: 1rem;
  padding: 0.8rem 2rem;
}
@media (min-width: 768px) {
  .hero-carousel.home-hero .hero-overlay .btn-modern {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }
}

.navbar.bg-white {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #FFFFFF !important;
  border-bottom: 1px solid #DEE2E6;
  padding: 0.75rem 0;
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .navbar.bg-white {
    padding: 1rem 0;
  }
}
.navbar.bg-white .container {
  padding: 0 1rem;
}
.navbar.bg-white .navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: #2C3E50 !important;
}
@media (min-width: 768px) {
  .navbar.bg-white .navbar-brand {
    font-size: 1.8rem;
  }
}
.navbar.bg-white .navbar-toggler {
  border: 1px solid #DEE2E6;
  padding: 0.5rem;
}
.navbar.bg-white .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  border-color: #E67E22;
}
.navbar.bg-white .navbar-nav {
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .navbar.bg-white .navbar-nav {
    padding: 0;
  }
}
.navbar.bg-white .navbar-nav .nav-link {
  margin: 0.25rem 0;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #2C3E50 !important;
  border-radius: 2rem;
  transition: background-color 0.2s ease;
}
@media (min-width: 992px) {
  .navbar.bg-white .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }
}
.navbar.bg-white .navbar-nav .nav-link:hover, .navbar.bg-white .navbar-nav .nav-link.active {
  background-color: rgba(230, 126, 34, 0.1);
  color: #2C3E50 !important;
}

footer {
  background: linear-gradient(145deg, rgb(40.3806451613, 56.9, 73.4193548387), #2C3E50);
  color: #FFFFFF;
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  footer {
    padding: 3rem 0 2rem;
    margin-top: 3rem;
  }
}
footer .container {
  padding: 0 1rem;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  footer h5 {
    margin-bottom: 1.2rem;
  }
}
footer h5:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #E67E22;
  margin-top: 0.5rem;
}
footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  footer ul {
    margin-bottom: 0;
  }
}
footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  padding: 0.25rem 0;
}
footer ul li a:hover {
  color: #FFFFFF;
  padding-left: 4px;
  text-decoration: none;
}
footer .social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  transition: background-color 0.2s;
}
@media (min-width: 768px) {
  footer .social-links a {
    width: 38px;
    height: 38px;
  }
}
footer .social-links a:hover {
  background: #E67E22;
  text-decoration: none;
}

.table.due-date-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .table.due-date-table {
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}
.table.due-date-table thead th {
  background: #2C3E50;
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.75rem;
  border: none;
  text-align: left;
}
@media (min-width: 768px) {
  .table.due-date-table thead th {
    padding: 1rem;
  }
}
.table.due-date-table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .table.due-date-table tbody td {
    padding: 1rem;
  }
}
.table.due-date-table tbody tr:last-child td {
  border-bottom: none;
}
.table.due-date-table tbody tr:hover {
  background: #F8F9FA;
}

.home-categories, .subscribe-section, .upcoming-exams {
  background-color: #F8F9FA;
  color: #2C3E50;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-categories, .subscribe-section, .upcoming-exams {
    padding: 5rem 0;
  }
}
.home-categories h2, .subscribe-section h2, .upcoming-exams h2 {
  color: #2C3E50 !important;
}
.home-categories h2::after, .subscribe-section h2::after, .upcoming-exams h2::after {
  background: #E67E22 !important;
}

.upcoming-exams::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="30" cy="30" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="50" cy="50" r="2" fill="%232C3E50" opacity="0.03"/></svg>');
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
}
.upcoming-exams .container {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.upcoming-exams .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header {
    margin-bottom: 3rem;
  }
}
.upcoming-exams .section-header h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header h2 {
    font-size: 2.5rem;
  }
}
.upcoming-exams .section-header p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header p {
    font-size: 1.1rem;
  }
}
.upcoming-exams .exam-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .upcoming-exams .exam-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .upcoming-exams .exam-card-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
}
.upcoming-exams .exam-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  border: 1px solid #DEE2E6;
}
@media (min-width: 1024px) {
  .upcoming-exams .exam-card {
    padding: 2rem;
  }
}
.upcoming-exams .exam-card .date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E67E22;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .date-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}
.upcoming-exams .exam-card .countdown {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E67E22;
  margin-bottom: 0.5rem;
  padding-right: 70px;
}
.upcoming-exams .exam-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.25rem;
  color: #2C3E50;
  padding-right: 70px;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card h3 {
    font-size: 1.2rem;
  }
}
.upcoming-exams .exam-card .instructor,
.upcoming-exams .exam-card .institute {
  font-size: 0.85rem;
  color: rgb(80.1935483871, 113, 145.8064516129);
}
.upcoming-exams .exam-card .status {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.upcoming-exams .exam-card .status i {
  font-size: 0.6rem;
}
.upcoming-exams .exam-card .status.status-open {
  color: #27ae60;
}
.upcoming-exams .exam-card .status.status-closed {
  color: #e74c3c;
}
.upcoming-exams .exam-card .deadline {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8rem;
  border-top: 1px solid #DEE2E6;
}
.upcoming-exams .exam-card .deadline strong {
  color: #E67E22;
}
.upcoming-exams .exam-card .btn-modern {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.upcoming-exams .empty-state {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border: 2px dashed #DEE2E6;
  border-radius: 1.5rem;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .upcoming-exams .empty-state {
    padding: 4rem 2rem;
  }
}
.upcoming-exams .empty-state i {
  font-size: 3rem;
  color: #DEE2E6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .upcoming-exams .empty-state i {
    font-size: 4rem;
  }
}
.upcoming-exams .empty-state h3 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .upcoming-exams .empty-state h3 {
    font-size: 1.5rem;
  }
}

.subscribe-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1000" preserveAspectRatio="none"><path fill="%232C3E50" opacity="0.03" d="M0,50 C400,-50 1000,200 1800,20 L1800,1000 L0,1000 Z" /></svg>');
  background-size: cover;
  z-index: 0;
}
.subscribe-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .subscribe-section .container {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
}
.subscribe-section .content-box {
  text-align: center;
}
@media (min-width: 768px) {
  .subscribe-section .content-box {
    text-align: left;
  }
}
.subscribe-section .content-box .badge {
  display: inline-block;
  background-color: #E67E22;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .subscribe-section .content-box .badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
  }
}
.subscribe-section .content-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2C3E50;
}
@media (min-width: 768px) {
  .subscribe-section .content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.subscribe-section .content-box .subtitle {
  color: #2C3E50;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .subscribe-section .content-box .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.subscribe-section .content-box .subscribe-form {
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .subscribe-section .content-box .subscribe-form {
    margin: 0;
  }
}
.subscribe-section .content-box .subscribe-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .subscribe-section .content-box .subscribe-form .input-group {
    flex-direction: row;
  }
}
.subscribe-section .content-box .subscribe-form .input-group input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid #DEE2E6;
  border-radius: 2rem;
  font-size: 0.95rem;
  background: #FFFFFF;
  transition: border 0.2s;
}
@media (min-width: 768px) {
  .subscribe-section .content-box .subscribe-form .input-group input {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
}
.subscribe-section .content-box .subscribe-form .input-group input:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}
.subscribe-section .content-box .subscribe-form .input-group .btn-modern {
  width: 100%;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .subscribe-section .content-box .subscribe-form .input-group .btn-modern {
    width: auto;
  }
}
.subscribe-section .image-box .video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.subscribe-section .image-box .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.subscribe-section .image-box .image-footer {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .subscribe-section .image-box .image-footer {
    padding: 2rem;
    margin-top: 2rem;
  }
}
.subscribe-section .image-box .image-footer .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
}
@media (min-width: 768px) {
  .subscribe-section .image-box .image-footer .footer-title {
    font-size: 1.8rem;
  }
}
.subscribe-section .image-box .image-footer .footer-text {
  color: rgb(80.1935483871, 113, 145.8064516129);
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .subscribe-section .image-box .image-footer .footer-text {
    font-size: 1rem;
  }
}
.subscribe-section .image-box .image-footer .footer-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .subscribe-section .image-box .image-footer .footer-stats {
    flex-direction: row;
    gap: 2rem;
  }
}
.subscribe-section .image-box .image-footer .footer-stats div {
  text-align: center;
}
.subscribe-section .image-box .image-footer .footer-stats div .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #E67E22;
}
@media (min-width: 768px) {
  .subscribe-section .image-box .image-footer .footer-stats div .stat-number {
    font-size: 2rem;
  }
}
.subscribe-section .image-box .image-footer .footer-stats div .stat-label {
  font-size: 0.85rem;
  color: rgb(104.6774193548, 138.5, 172.3225806452);
}

.home-categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,20 100,100 0,100" fill="%232C3E50" opacity="0.02"/></svg>');
  background-size: cover;
  z-index: 1;
}
.home-categories .container {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.home-categories .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-categories .section-header {
    margin-bottom: 3rem;
  }
}
.home-categories .section-header h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .home-categories .section-header h2 {
    font-size: 2.5rem;
  }
}
.home-categories .section-header p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .home-categories .section-header p {
    font-size: 1.1rem;
  }
}
.home-categories .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .home-categories .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-categories .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}
.home-categories .card {
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  height: 100%;
}
.home-categories .card:hover {
  transform: translateY(-5px);
}
.home-categories .card .card-img-container {
  padding: 1.5rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .home-categories .card .card-img-container {
    padding: 2rem;
    height: 180px;
  }
}
.home-categories .card .card-img-top {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-categories .card .card-title {
  color: #2C3E50;
  font-weight: 600;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .home-categories .card .card-title {
    font-size: 1.3rem;
  }
}
.home-categories .card .card-text {
  color: rgb(80.1935483871, 113, 145.8064516129);
  font-size: 0.9rem;
}
.home-categories .card .btn-modern {
  background: transparent;
  border: 1px solid #DEE2E6;
  color: #E67E22;
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}
@media (min-width: 768px) {
  .home-categories .card .btn-modern {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}
.home-categories .card .btn-modern:hover {
  background: #F8F9FA;
  border-color: #E67E22;
}

.home-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 40px -12px rgba(0, 20, 30, 0.25);
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .home-section {
    border-radius: 3rem;
    padding: 3rem 2rem;
  }
}
.home-section:hover {
  box-shadow: 0 30px 50px -18px #1a3449;
}
.home-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-section .section-header {
    margin-bottom: 3rem;
  }
}
.home-section .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e2b3c, #2c3f5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .home-section .section-header h2 {
    font-size: 2.4rem;
  }
}
.home-section .section-header p {
  color: #3e5a76;
  font-weight: 400;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .home-section .section-header p {
    font-size: 1.15rem;
  }
}
.home-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .home-section .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.8rem;
  }
}
.home-section .card {
  background: rgba(255, 255, 255, 0.8666666667);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem 0.5rem;
  box-shadow: 0 12px 24px -10px rgba(10, 40, 60, 0.15), 0 0 0 1px rgba(210, 225, 240, 0.5) inset;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}
@media (min-width: 768px) {
  .home-section .card {
    padding: 2rem 1rem 1.5rem;
    border-radius: 2rem;
  }
}
.home-section .card:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 25px 30px -12px rgba(15, 70, 100, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  background: #ffffff;
  border-color: #b9d4f0;
}
.home-section .card:hover .card-icon {
  transform: scale(1.05);
}
.home-section .card:hover .card-title {
  border-bottom-color: #8ab3d7;
}
.home-section .card .card-icon {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  filter: drop-shadow(2px 6px 8px rgba(0, 40, 70, 0.1));
  transition: transform 0.2s;
}
@media (min-width: 768px) {
  .home-section .card .card-icon {
    font-size: 3.8rem;
    margin-bottom: 0.75rem;
  }
}
.home-section .card .card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1d3b5c;
  letter-spacing: -0.01em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .home-section .card .card-title {
    font-size: 1.3rem;
  }
}
.home-section .card .card-desc {
  font-size: 0.8rem;
  color: #54738f;
  margin-top: 0.4rem;
  padding: 0 0.2rem;
  opacity: 0.75;
}
@media (min-width: 768px) {
  .home-section .card .card-desc {
    font-size: 0.9rem;
  }
}
.home-section .section-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.5;
  font-size: 0.8rem;
  color: #2c4b6b;
}
@media (min-width: 768px) {
  .home-section .section-footer-note {
    margin-top: 2.5rem;
    font-size: 0.85rem;
  }
}

.search-section {
  background-color: #F8F9FA;
  color: #2C3E50;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-section {
    padding: 4rem 0;
  }
}
.search-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="30" cy="30" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="50" cy="50" r="2" fill="%232C3E50" opacity="0.03"/></svg>');
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
}
.search-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.search-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .search-header {
    margin-bottom: 2.5rem;
  }
}
.search-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2C3E50;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .search-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.search-header h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: #E67E22;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .search-header h2:after {
    bottom: -8px;
    width: 60px;
  }
}
.search-header .search-description {
  color: #2C3E50;
  opacity: 0.8;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .search-header .search-description {
    font-size: 1.1rem;
  }
}

.search-card {
  background: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
  .search-card {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }
}
.search-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 640px) {
  .search-form {
    flex-direction: row;
    align-items: flex-end;
  }
}

.form-group {
  flex: 1;
  min-width: 100%;
}
@media (min-width: 640px) {
  .form-group {
    min-width: 200px;
  }
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2C3E50;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .form-group label {
    font-size: 0.9rem;
  }
}
.form-group label i {
  margin-right: 0.3rem;
  color: #E67E22;
}

.form-control {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #DEE2E6;
  border-radius: 2rem;
  font-size: 0.95rem;
  background: #FFFFFF;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}
@media (min-width: 768px) {
  .form-control {
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
  }
}
.form-control:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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='%232C3E50' 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: 1em;
}

.results-container {
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease-out;
}
@media (min-width: 768px) {
  .results-container {
    margin-top: 2rem;
  }
}

.results-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .results-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

.results-count {
  background: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1px solid #DEE2E6;
  font-weight: 500;
  color: #2C3E50;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .results-count {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}
.results-count i {
  margin-right: 0.5rem;
  color: #E67E22;
}

.table-responsive {
  overflow-x: auto;
  border-radius: 1.25rem;
  background: #FFFFFF;
  border: 1px solid #DEE2E6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  -webkit-overflow-scrolling: touch;
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  min-width: 800px;
}
@media (min-width: 1200px) {
  .course-table {
    min-width: 1000px;
  }
}
.course-table thead th {
  background: #2C3E50;
  color: #FFFFFF;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border: none;
  text-align: left;
  font-size: 0.85rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .course-table thead th {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}
.course-table thead th:first-child {
  border-top-left-radius: 1.25rem;
}
.course-table thead th:last-child {
  border-top-right-radius: 1.25rem;
}
.course-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #DEE2E6;
  color: #2C3E50;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .course-table tbody td {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }
}
.course-table tbody tr:last-child td {
  border-bottom: none;
}
.course-table tbody tr:hover {
  background: #F8F9FA;
}

.course-title {
  font-weight: 600;
  color: #2C3E50;
}

.instructor-name,
.institute-name {
  color: #2C3E50;
  opacity: 0.9;
}

.date-cell {
  white-space: nowrap;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .date-cell {
    font-size: 0.9rem;
  }
}

.countdown-badge {
  display: inline-block;
  background: rgba(230, 126, 34, 0.1);
  color: #E67E22;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .countdown-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
  }
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
  min-width: 70px;
}
@media (min-width: 768px) {
  .status-badge {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    min-width: 80px;
  }
}
.status-badge.open {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}
.status-badge.closed {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.view-btn {
  background: #E67E22;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .view-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
}
.view-btn:hover {
  background: #FFFFFF;
  color: #E67E22;
  border-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.view-btn i {
  font-size: 0.8rem;
}
.view-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .empty-state {
    padding: 4rem 2rem;
  }
}
.empty-state i {
  font-size: 3rem;
  color: #DEE2E6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
}
.empty-state h3 {
  color: #2C3E50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .empty-state h3 {
    font-size: 1.5rem;
  }
}
.empty-state p {
  color: #2C3E50;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .empty-state p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
.empty-state .stats-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 480px) {
  .empty-state .stats-group {
    flex-direction: row;
    gap: 1rem;
  }
}

.ui-autocomplete {
  background: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 1rem;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  z-index: 1100 !important;
  max-height: 300px;
  overflow-y: auto;
}

.ui-menu-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #2C3E50;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .ui-menu-item {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}
.ui-menu-item:hover {
  background: #F8F9FA;
}

.ui-helper-hidden-accessible {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-accent {
  color: #E67E22;
}

.bg-soft-accent {
  background: rgba(230, 126, 34, 0.05);
}

.border-rounded {
  border-radius: 1.25rem;
}

.shadow-soft {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.shadow-soft-hover {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.shadow-soft-hover:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Assignment Hero Section */
.assignment-hero {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .assignment-hero {
    padding: 3rem 0;
  }
}

.assignment-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="30" cy="30" r="2" fill="%232C3E50" opacity="0.03"/><circle cx="50" cy="50" r="2" fill="%232C3E50" opacity="0.03"/></svg>');
  background-repeat: repeat;
  z-index: 0;
}

.assignment-hero .container {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .breadcrumb {
    font-size: 1rem;
  }
}

.breadcrumb-item a {
  color: #2C3E50;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-item a:hover {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #E67E22;
}

.assignment-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .assignment-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.deadline-indicator {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .deadline-indicator {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
.deadline-indicator.status-open {
  color: #27ae60;
  border-left: 4px solid #27ae60;
}
.deadline-indicator.status-closed {
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

/* Detail Cards */
.detail-card {
  background: white;
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .detail-card {
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-header-custom {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .card-header-custom {
    padding: 1.5rem 2rem;
  }
}

.card-header-custom h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C3E50;
}
@media (min-width: 768px) {
  .card-header-custom h3 {
    font-size: 1.3rem;
  }
}

.card-body-custom {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .card-body-custom {
    padding: 2rem;
  }
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .requirements-grid {
    gap: 1.5rem;
  }
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}
@media (min-width: 768px) {
  .requirement-item {
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}

.requirement-item:hover {
  transform: translateX(5px);
}

.requirement-item i {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .requirement-item i {
    font-size: 1.5rem;
  }
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .info-grid {
    gap: 1rem;
  }
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 640px) {
  .info-row {
    flex-direction: row;
    align-items: baseline;
  }
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #2C3E50;
}
@media (min-width: 640px) {
  .info-label {
    width: 140px;
  }
}

.info-value {
  flex: 1;
  color: #5a6f7d;
}

/* Purchase Card */
.purchase-card {
  background: white;
  border: 1px solid #DEE2E6;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .purchase-card {
    border-radius: 2rem;
    padding: 2rem;
    margin-top: 0;
  }
}

.price-tag {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .price-tag {
    margin-bottom: 2rem;
  }
}

.price-tag .currency {
  font-size: 1.2rem;
  vertical-align: top;
  color: #E67E22;
}
@media (min-width: 768px) {
  .price-tag .currency {
    font-size: 1.5rem;
  }
}

.price-tag .amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2C3E50;
  line-height: 1;
}
@media (min-width: 768px) {
  .price-tag .amount {
    font-size: 4rem;
  }
}

.features-list h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #2C3E50;
}
@media (min-width: 768px) {
  .features-list h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .features-list ul {
    margin-bottom: 2rem;
  }
}

.features-list ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .features-list ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.features-list ul li i {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .features-list ul li i {
    font-size: 1.1rem;
  }
}

.purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .purchase-actions {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.btn-purchase {
  background: #E67E22;
  color: white;
  padding: 0.8rem;
  border-radius: 2rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
}
@media (min-width: 768px) {
  .btn-purchase {
    padding: 1rem;
    font-size: 1.2rem;
  }
}
.btn-purchase:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
  color: white;
  text-decoration: none;
}

.btn-wishlist {
  background: transparent;
  color: #2C3E50;
  padding: 0.6rem;
  border-radius: 2rem;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #DEE2E6;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .btn-wishlist {
    padding: 0.75rem;
  }
}
.btn-wishlist:hover {
  background: #f8f9fa;
  border-color: #E67E22;
  color: #E67E22;
  text-decoration: none;
}

.guarantee-text {
  text-align: center;
  color: #6c757d;
  font-size: 0.8rem;
  margin: 0.75rem 0;
}
@media (min-width: 768px) {
  .guarantee-text {
    font-size: 0.9rem;
    margin: 1rem 0;
  }
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 1rem;
  color: #2C3E50;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .secure-badge {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Testimonials */
.testimonial-item {
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .testimonial-item {
    padding: 1rem;
  }
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .testimonial-rating {
    margin-bottom: 1rem;
  }
}

.testimonial-text {
  font-style: italic;
  color: #5a6f7d;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.testimonial-author {
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .testimonial-author {
    font-size: 1rem;
  }
}

/* Related Section */
.related-section {
  padding: 2rem 0;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .related-section {
    padding: 4rem 0;
  }
}

.section-header h2 {
  color: #2C3E50;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  background: white;
  border: 1px solid #DEE2E6;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .related-card {
    border-radius: 1.5rem;
  }
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-card-body {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .related-card-body {
    padding: 2rem;
  }
}

.related-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .related-card-body h3 {
    font-size: 1.2rem;
  }
}

.related-card-body .course-name {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .related-card-body .course-name {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

.related-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .related-price {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.btn-view {
  display: inline-block;
  color: #E67E22;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-view:hover {
  color: #d35400;
  transform: translateX(5px);
  text-decoration: none;
}

.no-related {
  color: #6c757d;
  font-style: italic;
  padding: 1rem;
}
@media (min-width: 768px) {
  .no-related {
    padding: 2rem;
  }
}

/* Utilities */
.bg-soft {
  background: #f8f9fa;
}

.bg-soft-accent {
  background: rgba(230, 126, 34, 0.1);
}

.text-accent {
  color: #E67E22;
}

.upcoming-exams {
  padding: 3rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, rgb(242.05, 243.9, 245.75) 100%);
}
@media (min-width: 768px) {
  .upcoming-exams {
    padding: 5rem 0;
  }
}
.upcoming-exams .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header {
    margin-bottom: 3rem;
  }
}
.upcoming-exams .section-header h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header h2 {
    font-size: 2.5rem;
  }
}
.upcoming-exams .section-header p {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .upcoming-exams .section-header p {
    font-size: 1.1rem;
  }
}
.upcoming-exams .exam-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .upcoming-exams .exam-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .upcoming-exams .exam-card-container {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.upcoming-exams .exam-card {
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #DEE2E6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .upcoming-exams .exam-card {
    padding: 2rem;
  }
}
.upcoming-exams .exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #E67E22;
}
.upcoming-exams .exam-card .date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(230, 126, 34, 0.1);
  color: #E67E22;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(230, 126, 34, 0.2);
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .date-badge {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}
.upcoming-exams .exam-card .countdown {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.75rem;
  padding-right: 70px;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .countdown {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}
.upcoming-exams .exam-card .countdown i {
  color: #E67E22;
}
.upcoming-exams .exam-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  padding-right: 70px;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card h3 {
    font-size: 1.3rem;
  }
}
.upcoming-exams .exam-card .institute {
  font-size: 0.85rem;
  color: rgb(80.1935483871, 113, 145.8064516129);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .institute {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.upcoming-exams .exam-card .status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .status {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}
.upcoming-exams .exam-card .status i {
  font-size: 0.6rem;
}
.upcoming-exams .exam-card .status.status-open {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.upcoming-exams .exam-card .status.status-closed {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
}
.upcoming-exams .exam-card .deadline {
  margin: 0.75rem 0 1rem;
  font-size: 0.85rem;
  color: rgb(71.1451612903, 100.25, 129.3548387097);
}
@media (min-width: 768px) {
  .upcoming-exams .exam-card .deadline {
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
  }
}
.upcoming-exams .exam-card .deadline strong {
  color: #E67E22;
  font-weight: 600;
}
.upcoming-exams .exam-card .deadline strong i {
  margin-right: 0.3rem;
}
.upcoming-exams .exam-card .btn-modern {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.upcoming-exams .exam-card .btn-modern i {
  font-size: 1rem;
}
.upcoming-exams .exam-card .btn-modern:hover {
  background: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

.life-cards-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, rgb(239.075, 241.35, 243.625) 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .life-cards-section {
    padding: 6rem 0;
  }
}
.life-cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(230, 126, 34, 0.03) 0%, transparent 30%), radial-gradient(circle at 90% 80%, rgba(44, 62, 80, 0.03) 0%, transparent 30%);
  pointer-events: none;
}
.life-cards-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .life-cards-section .container {
    padding: 0 2rem;
  }
}
.life-cards-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .life-cards-section .section-header {
    margin-bottom: 4rem;
  }
}
.life-cards-section .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 62, 80, 0.1);
  color: #2C3E50;
  padding: 0.4rem 1rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(44, 62, 80, 0.2);
}
@media (min-width: 768px) {
  .life-cards-section .section-header .section-badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
.life-cards-section .section-header .section-badge i {
  color: #E67E22;
}
.life-cards-section .section-header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .life-cards-section .section-header .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.life-cards-section .section-header .section-title .text-gradient {
  background: linear-gradient(135deg, #E67E22, rgb(237.7743902439, 166.1158536585, 102.7256097561));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.life-cards-section .section-header .section-subtitle {
  font-size: 1rem;
  color: rgb(80.1935483871, 113, 145.8064516129);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .life-cards-section .section-header .section-subtitle {
    font-size: 1.2rem;
  }
}
.life-cards-section .filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .life-cards-section .filter-tabs {
    gap: 0.5rem;
    margin-bottom: 3rem;
  }
}
.life-cards-section .filter-tabs .filter-tab {
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 2rem;
  color: #2C3E50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .life-cards-section .filter-tabs .filter-tab {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}
.life-cards-section .filter-tabs .filter-tab:hover {
  background: rgba(230, 126, 34, 0.1);
  border-color: #E67E22;
  transform: translateY(-2px);
  text-decoration: none;
}
.life-cards-section .filter-tabs .filter-tab.active {
  background: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}
.life-cards-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .life-cards-section .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .life-cards-section .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.life-cards-section .life-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .life-cards-section .life-card {
    border-radius: 2rem;
  }
}
.life-cards-section .life-card.primary-card {
  background: linear-gradient(145deg, #FFFFFF, rgb(219.8387096774, 227.75, 235.6612903226));
  border-top: 4px solid #2C3E50;
}
.life-cards-section .life-card.primary-card .icon-wrapper {
  background: rgba(44, 62, 80, 0.15);
  color: #2C3E50;
}
.life-cards-section .life-card.primary-card .card-link {
  color: #2C3E50;
}
.life-cards-section .life-card.primary-card .card-link:hover {
  background: #2C3E50;
  color: #FFFFFF;
}
.life-cards-section .life-card.success-card {
  background: linear-gradient(145deg, #FFFFFF, #f0f9f0);
  border-top: 4px solid #27ae60;
}
.life-cards-section .life-card.success-card .icon-wrapper {
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}
.life-cards-section .life-card.success-card .card-link {
  color: #27ae60;
}
.life-cards-section .life-card.success-card .card-link:hover {
  background: #27ae60;
  color: #FFFFFF;
}
.life-cards-section .life-card.warning-card {
  background: linear-gradient(145deg, #FFFFFF, #fef5e7);
  border-top: 4px solid #f39c12;
}
.life-cards-section .life-card.warning-card .icon-wrapper {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}
.life-cards-section .life-card.warning-card .card-link {
  color: #f39c12;
}
.life-cards-section .life-card.warning-card .card-link:hover {
  background: #f39c12;
  color: #FFFFFF;
}
.life-cards-section .life-card.info-card {
  background: linear-gradient(145deg, #FFFFFF, #e7f3f9);
  border-top: 4px solid #3498db;
}
.life-cards-section .life-card.info-card .icon-wrapper {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}
.life-cards-section .life-card.info-card .card-link {
  color: #3498db;
}
.life-cards-section .life-card.info-card .card-link:hover {
  background: #3498db;
  color: #FFFFFF;
}
.life-cards-section .life-card.danger-card {
  background: linear-gradient(145deg, #FFFFFF, #fde9e9);
  border-top: 4px solid #e74c3c;
}
.life-cards-section .life-card.danger-card .icon-wrapper {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}
.life-cards-section .life-card.danger-card .card-link {
  color: #e74c3c;
}
.life-cards-section .life-card.danger-card .card-link:hover {
  background: #e74c3c;
  color: #FFFFFF;
}
.life-cards-section .life-card.dark-card {
  background: linear-gradient(145deg, #FFFFFF, #f0f2f5);
  border-top: 4px solid #2C3E50;
}
.life-cards-section .life-card.dark-card .icon-wrapper {
  background: rgba(44, 62, 80, 0.15);
  color: #2C3E50;
}
.life-cards-section .life-card.dark-card .card-link {
  color: #2C3E50;
}
.life-cards-section .life-card.dark-card .card-link:hover {
  background: #2C3E50;
  color: #FFFFFF;
}
.life-cards-section .life-card.purple-card {
  background: linear-gradient(145deg, #FFFFFF, #f3e8ff);
  border-top: 4px solid #9b59b6;
}
.life-cards-section .life-card.purple-card .icon-wrapper {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
}
.life-cards-section .life-card.purple-card .card-link {
  color: #9b59b6;
}
.life-cards-section .life-card.purple-card .card-link:hover {
  background: #9b59b6;
  color: #FFFFFF;
}
.life-cards-section .life-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .life-cards-section .life-card:hover {
    transform: translateY(-10px);
  }
}
.life-cards-section .life-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}
.life-cards-section .life-card:hover .icon-wrapper i {
  transform: scale(1.1);
}
.life-cards-section .life-card:hover .card-link {
  gap: 1rem;
}
.life-cards-section .life-card:hover .card-link i {
  transform: translateX(5px);
}
.life-cards-section .life-card:hover .card-link i.second-arrow {
  opacity: 1;
  transform: translateX(0);
}
.life-cards-section .life-card:hover .card-pattern {
  opacity: 0.1;
  transform: scale(1.1);
}
.life-cards-section .life-card .card-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-inner {
    padding: 2rem;
  }
}
.life-cards-section .life-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-header {
    margin-bottom: 1.5rem;
  }
}
.life-cards-section .life-card .card-header .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-header .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 1.5rem;
    font-size: 1.8rem;
  }
}
.life-cards-section .life-card .card-header .icon-wrapper .icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.life-cards-section .life-card .card-header .header-text {
  flex: 1;
}
.life-cards-section .life-card .card-header .header-text .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-header .header-text .card-title {
    font-size: 1.4rem;
  }
}
.life-cards-section .life-card .card-header .header-text .card-subtitle {
  font-size: 0.8rem;
  color: rgb(80.1935483871, 113, 145.8064516129);
  margin: 0;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-header .header-text .card-subtitle {
    font-size: 0.9rem;
  }
}
.life-cards-section .life-card .card-body {
  flex: 1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-body {
    margin-bottom: 1.5rem;
  }
}
.life-cards-section .life-card .card-body .card-description {
  color: rgb(71.1451612903, 100.25, 129.3548387097);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-body .card-description {
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }
}
.life-cards-section .life-card .card-body .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.life-cards-section .life-card .card-body .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgb(62.0967741935, 87.5, 112.9032258065);
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-body .features-list li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
  }
}
.life-cards-section .life-card .card-body .features-list li i {
  color: #E67E22;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-body .features-list li i {
    font-size: 0.9rem;
  }
}
.life-cards-section .life-card .card-footer {
  margin-top: auto;
}
.life-cards-section .life-card .card-footer .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(44, 62, 80, 0.05);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 62, 80, 0.1);
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-footer .card-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}
.life-cards-section .life-card .card-footer .card-link span {
  position: relative;
  z-index: 1;
}
.life-cards-section .life-card .card-footer .card-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.life-cards-section .life-card .card-footer .card-link i.second-arrow {
  position: absolute;
  opacity: 0;
  transform: translateX(-10px);
}
.life-cards-section .life-card .card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  opacity: 0.03;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .life-cards-section .life-card .card-pattern {
    width: 150px;
    height: 150px;
  }
}
.life-cards-section .life-card .card-pattern.pattern-academic {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 L85 35 L85 65 L50 85 L15 65 L15 35 Z" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-career {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="35" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-achievement {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 63,38 93,40 69,58 75,88 50,73 25,88 31,58 7,40 37,38" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-community {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="10" fill="%232C3E50"/><circle cx="70" cy="30" r="10" fill="%232C3E50"/><circle cx="50" cy="70" r="15" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-progress {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 L50 20 L80 80 Z" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-library {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="30" width="15" height="50" fill="%232C3E50"/><rect x="42" y="20" width="15" height="60" fill="%232C3E50"/><rect x="64" y="25" width="15" height="55" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-tools {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="35" cy="35" r="15" fill="%232C3E50"/><circle cx="65" cy="65" r="15" fill="%232C3E50"/><line x1="45" y1="45" x2="55" y2="55" stroke="%232C3E50" stroke-width="8"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .life-card .card-pattern.pattern-goals {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%232C3E50" stroke-width="8"/><circle cx="50" cy="50" r="10" fill="%232C3E50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.life-cards-section .view-all-container {
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .life-cards-section .view-all-container {
    margin-top: 2rem;
  }
}
.life-cards-section .view-all-container .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #FFFFFF;
  border: 2px solid #E67E22;
  border-radius: 3rem;
  color: #E67E22;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .life-cards-section .view-all-container .btn-view-all {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
.life-cards-section .view-all-container .btn-view-all:hover {
  background: #E67E22;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
  text-decoration: none;
}

.quick-access-row {
  background: #FFFFFF;
  padding: 1.5rem 0;
  border-top: 1px solid #DEE2E6;
  border-bottom: 1px solid #DEE2E6;
}
@media (min-width: 768px) {
  .quick-access-row {
    padding: 2rem 0;
  }
}
.quick-access-row .quick-cards {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .quick-access-row .quick-cards {
    gap: 2rem;
  }
}
.quick-access-row .quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: #F8F9FA;
  border-radius: 1rem;
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 70px;
}
@media (min-width: 480px) {
  .quick-access-row .quick-card {
    min-width: 100px;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    gap: 0.5rem;
  }
}
.quick-access-row .quick-card i {
  font-size: 1.3rem;
  color: #E67E22;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .quick-access-row .quick-card i {
    font-size: 1.8rem;
  }
}
.quick-access-row .quick-card span {
  font-weight: 600;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .quick-access-row .quick-card span {
    font-size: 0.9rem;
  }
}
.quick-access-row .quick-card:hover {
  background: #E67E22;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}
@media (min-width: 768px) {
  .quick-access-row .quick-card:hover {
    transform: translateY(-5px);
  }
}
.quick-access-row .quick-card:hover i {
  transform: scale(1.1);
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .quick-access-row .quick-card:hover i {
    transform: scale(1.2);
  }
}
.quick-access-row .quick-card:hover span {
  color: #FFFFFF;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.life-card {
  animation: cardFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--card-index) * 0.2s);
}

@media (max-width: 768px) {
  .life-card {
    animation: none;
  }
  .life-card:hover {
    animation: cardFloat 3s ease-in-out infinite;
  }
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

@supports not (gap: 1rem) {
  .cards-grid,
  .exam-card-container,
  .quick-cards,
  .filter-tabs {
    margin: -0.5rem;
  }
  .cards-grid > *,
  .exam-card-container > *,
  .quick-cards > *,
  .filter-tabs > * {
    margin: 0.5rem;
  }
}
.course-page .row {
  margin: 0;
}
@media (min-width: 768px) {
  .course-page .row {
    margin: 0 -0.75rem;
  }
}
.course-page .course-main {
  padding: 0;
}
@media (min-width: 768px) {
  .course-page .course-main {
    padding: 0 0.75rem;
  }
}
@media (max-width: 767px) {
  .course-page .course-main .course-detail {
    margin-bottom: 1.5rem;
  }
}
.course-page .course-sidebar {
  padding: 0;
}
@media (min-width: 768px) {
  .course-page .course-sidebar {
    padding: 0 0.75rem;
  }
}
@media (max-width: 767px) {
  .course-page .course-sidebar {
    margin-top: 2rem;
  }
}
.course-page .course-sidebar .sidebar-inner {
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(44, 62, 80, 0.1);
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-inner {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .course-page .course-sidebar .sidebar-inner {
    position: sticky;
    top: 100px;
  }
}
.course-page .course-sidebar h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2C3E50;
  border-bottom: 2px solid #E67E22;
  padding-bottom: 0.5rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .course-page .course-sidebar h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.course-page .course-sidebar .sidebar-search {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-search {
    margin-bottom: 2rem;
  }
}
.course-page .course-sidebar .sidebar-search .input-group {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(44, 62, 80, 0.2);
  transition: box-shadow 0.2s;
}
.course-page .course-sidebar .sidebar-search .input-group:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
  border-color: #E67E22;
}
.course-page .course-sidebar .sidebar-search .form-control {
  flex: 1;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  background: white;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-search .form-control {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
.course-page .course-sidebar .sidebar-search .form-control:focus {
  outline: none;
  box-shadow: none;
}
.course-page .course-sidebar .sidebar-search .form-control::-moz-placeholder {
  color: rgb(137.5806451613, 164, 190.4193548387);
}
.course-page .course-sidebar .sidebar-search .form-control::placeholder {
  color: rgb(137.5806451613, 164, 190.4193548387);
}
.course-page .course-sidebar .sidebar-search .btn-search {
  background: #E67E22;
  color: white;
  border: none;
  padding: 0 1rem;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-search .btn-search {
    padding: 0 1.2rem;
  }
}
.course-page .course-sidebar .sidebar-search .btn-search:hover {
  background: rgb(200.5170731707, 106.156097561, 22.6829268293);
  cursor: pointer;
}
.course-page .course-sidebar .sidebar-search .btn-search i {
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-search .btn-search i {
    font-size: 1rem;
  }
}
.course-page .course-sidebar .sidebar-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-section {
    margin-bottom: 2rem;
  }
}
.course-page .course-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
}
.course-page .course-sidebar .sidebar-section h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-section h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.course-page .course-sidebar .sidebar-courses {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-page .course-sidebar .sidebar-courses li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-courses li {
    margin-bottom: 0.75rem;
  }
}
.course-page .course-sidebar .sidebar-courses li a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
  color: #2C3E50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-courses li a {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
}
.course-page .course-sidebar .sidebar-courses li a:hover {
  background: white;
  border-color: #E67E22;
  transform: translateX(3px);
  text-decoration: none;
}
@media (max-width: 767px) {
  .course-page .course-sidebar .sidebar-courses li a:hover {
    transform: translateX(2px);
  }
}
.course-page .course-sidebar .sidebar-courses li a i {
  margin-right: 0.5rem;
  color: #E67E22;
  font-size: 0.9rem;
  width: 1.1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-courses li a i {
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 1.2rem;
  }
}
.course-page .course-sidebar .sidebar-courses li a span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.course-page .course-sidebar .sidebar-courses li a .badge {
  background: #E67E22;
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .sidebar-courses li a .badge {
    font-size: 0.7rem;
  }
}
.course-page .course-sidebar .filter-options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-page .course-sidebar .filter-options li {
  margin-bottom: 0.5rem;
}
.course-page .course-sidebar .filter-options li label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2C3E50;
  font-size: 0.9rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .filter-options li label {
    font-size: 0.95rem;
  }
}
.course-page .course-sidebar .filter-options li label input[type=checkbox],
.course-page .course-sidebar .filter-options li label input[type=radio] {
  accent-color: #E67E22;
  width: 16px;
  height: 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .filter-options li label input[type=checkbox],
  .course-page .course-sidebar .filter-options li label input[type=radio] {
    width: 18px;
    height: 18px;
  }
}
.course-page .course-sidebar .filter-options li label .count {
  color: rgb(104.6774193548, 138.5, 172.3225806452);
  font-size: 0.85rem;
  margin-left: auto;
}
.course-page .course-sidebar .price-range .range-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #2C3E50;
  font-size: 0.9rem;
  font-weight: 500;
}
.course-page .course-sidebar .price-range input[type=range] {
  width: 100%;
  margin: 0.5rem 0;
  -webkit-appearance: none;
  background: transparent;
}
.course-page .course-sidebar .price-range input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: #DEE2E6;
  border-radius: 2px;
}
.course-page .course-sidebar .price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #E67E22;
  border-radius: 50%;
  margin-top: -7px;
  cursor: pointer;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.course-page .course-sidebar .price-range input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.course-page .course-sidebar .price-range input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  background: #DEE2E6;
  border-radius: 2px;
}
.course-page .course-sidebar .price-range input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #E67E22;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -moz-transition: transform 0.2s;
  transition: transform 0.2s;
}
.course-page .course-sidebar .price-range input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.course-page .course-sidebar .tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.course-page .course-sidebar .tags-cloud .tag {
  background: #F8F9FA;
  color: #2C3E50;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .tags-cloud .tag {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}
.course-page .course-sidebar .tags-cloud .tag:hover {
  background: #E67E22;
  color: white;
  border-color: #E67E22;
  transform: translateY(-2px);
  text-decoration: none;
}
.course-page .course-sidebar .instructor-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 1rem;
}
.course-page .course-sidebar .instructor-card .instructor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .course-page .course-sidebar .instructor-card .instructor-avatar {
    width: 60px;
    height: 60px;
  }
}
.course-page .course-sidebar .instructor-card .instructor-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-page .course-sidebar .instructor-card .instructor-details {
  flex: 1;
}
.course-page .course-sidebar .instructor-card .instructor-details h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.25rem;
}
.course-page .course-sidebar .instructor-card .instructor-details p {
  font-size: 0.85rem;
  color: rgb(80.1935483871, 113, 145.8064516129);
  margin-bottom: 0.25rem;
}
.course-page .course-sidebar .instructor-card .instructor-details .rating {
  color: #ffc107;
  font-size: 0.85rem;
}
.course-page .course-sidebar .instructor-card .instructor-details .rating span {
  color: rgb(104.6774193548, 138.5, 172.3225806452);
  margin-left: 0.25rem;
}
.course-page .course-sidebar .sidebar-cta {
  background: linear-gradient(135deg, #2C3E50, rgb(25.9032258065, 36.5, 47.0967741935));
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}
.course-page .course-sidebar .sidebar-cta h5 {
  color: white;
  border-bottom: 2px solid #E67E22;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.course-page .course-sidebar .sidebar-cta p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.course-page .course-sidebar .sidebar-cta .btn-cta {
  background: #E67E22;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
}
.course-page .course-sidebar .sidebar-cta .btn-cta:hover {
  background: rgb(235.1829268293, 152.743902439, 79.8170731707);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}
.course-page .course-sidebar .recent-activity {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-page .course-sidebar .recent-activity li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #DEE2E6;
}
.course-page .course-sidebar .recent-activity li:last-child {
  border-bottom: none;
}
.course-page .course-sidebar .recent-activity li .activity-icon {
  width: 30px;
  height: 30px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E67E22;
  font-size: 0.9rem;
}
.course-page .course-sidebar .recent-activity li .activity-details {
  flex: 1;
}
.course-page .course-sidebar .recent-activity li .activity-details .activity-text {
  font-size: 0.9rem;
  color: #2C3E50;
  margin-bottom: 0.2rem;
}
.course-page .course-sidebar .recent-activity li .activity-details .activity-time {
  font-size: 0.75rem;
  color: rgb(104.6774193548, 138.5, 172.3225806452);
}
@media (max-width: 767px) {
  .course-page .course-sidebar .sidebar-inner {
    padding: 1rem;
  }
  .course-page .course-sidebar .filter-options li label {
    font-size: 0.85rem;
  }
  .course-page .course-sidebar .tags-cloud {
    gap: 0.3rem;
  }
  .course-page .course-sidebar .tags-cloud .tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  .course-page .course-sidebar .instructor-card {
    padding: 0.75rem;
  }
  .course-page .course-sidebar .instructor-card .instructor-avatar {
    width: 40px;
    height: 40px;
  }
  .course-page .course-sidebar .instructor-card .instructor-details h6 {
    font-size: 0.9rem;
  }
  .course-page .course-sidebar .sidebar-cta {
    padding: 1rem;
  }
  .course-page .course-sidebar .sidebar-cta h5 {
    font-size: 1rem;
  }
  .course-page .course-sidebar .sidebar-cta p {
    font-size: 0.8rem;
  }
  .course-page .course-sidebar .sidebar-cta .btn-cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}

.sidebar-loading {
  padding: 2rem;
  text-align: center;
}
.sidebar-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #DEE2E6;
  border-top-color: #E67E22;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
.sidebar-loading p {
  color: rgb(80.1935483871, 113, 145.8064516129);
  font-size: 0.9rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.sidebar-empty {
  padding: 2rem;
  text-align: center;
  color: rgb(104.6774193548, 138.5, 172.3225806452);
  font-size: 0.9rem;
}
.sidebar-empty i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.sidebar-courses li {
  animation: slideIn 0.3s ease-out forwards;
  opacity: 0;
  transform: translateX(-10px);
}
.sidebar-courses li:nth-child(1) {
  animation-delay: 0.05s;
}
.sidebar-courses li:nth-child(2) {
  animation-delay: 0.1s;
}
.sidebar-courses li:nth-child(3) {
  animation-delay: 0.15s;
}
.sidebar-courses li:nth-child(4) {
  animation-delay: 0.2s;
}
.sidebar-courses li:nth-child(5) {
  animation-delay: 0.25s;
}
.sidebar-courses li:nth-child(6) {
  animation-delay: 0.3s;
}
.sidebar-courses li:nth-child(7) {
  animation-delay: 0.35s;
}
.sidebar-courses li:nth-child(8) {
  animation-delay: 0.4s;
}
.sidebar-courses li:nth-child(9) {
  animation-delay: 0.45s;
}
.sidebar-courses li:nth-child(10) {
  animation-delay: 0.5s;
}
.sidebar-courses li:nth-child(11) {
  animation-delay: 0.55s;
}
.sidebar-courses li:nth-child(12) {
  animation-delay: 0.6s;
}
.sidebar-courses li:nth-child(13) {
  animation-delay: 0.65s;
}
.sidebar-courses li:nth-child(14) {
  animation-delay: 0.7s;
}
.sidebar-courses li:nth-child(15) {
  animation-delay: 0.75s;
}
.sidebar-courses li:nth-child(16) {
  animation-delay: 0.8s;
}
.sidebar-courses li:nth-child(17) {
  animation-delay: 0.85s;
}
.sidebar-courses li:nth-child(18) {
  animation-delay: 0.9s;
}
.sidebar-courses li:nth-child(19) {
  animation-delay: 0.95s;
}
.sidebar-courses li:nth-child(20) {
  animation-delay: 1s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=course.css.map */