@charset "UTF-8";
/**
 * CodeHawke Main SCSS
 * Using the 7-1 architecture pattern
 */
/**
 * Import abstracts (variables, mixins, functions)
 */
/**
 * Import base styles (reset, typography, animations)
 */
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  color: #212121;
  background-color: #ffffff;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Anchor links */
a {
  color: #0051ff;
  text-decoration: none;
  transition: color 150ms;
}
a:hover {
  color: #0041cc;
}

/* Remove list styling */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Normalize form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* Set default focus styles */
:focus {
  outline: 2px solid #0051ff;
  outline-offset: 2px;
}

/* Make sure textareas without a rows attribute have a minimum height */
textarea:not([rows]) {
  min-height: 10em;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
}

h1, .h1 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h2, .h2 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h3, .h3 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

h4, .h4 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

h5, .h5 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

h6, .h6 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-primary {
  color: #0051ff;
}

.text-secondary {
  color: #9861ff;
}

.text-muted {
  color: #616161;
}

.text-small {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #0051ff;
  text-decoration: none;
  transition: color 150ms;
}
a:hover {
  color: #0041cc;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 16px;
}
ul.no-bullet, ol.no-bullet {
  list-style: none;
  padding-left: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 4px;
}

/**
 * Import components (buttons, forms, cards, etc.)
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms;
  outline: none;
  border: none;
}
.btn--small {
  padding: 4px 8px;
  font-size: 0.875rem;
}
.btn--large {
  padding: 16px 24px;
  font-size: 1.125rem;
}
.btn--primary {
  background-color: #0051ff;
  color: white;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #0041cc;
}
.btn--secondary {
  background-color: #9861ff;
  color: white;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #772eff;
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #0051ff;
  color: #0051ff;
}
.btn--outline:hover, .btn--outline:focus {
  background-color: #0051ff;
  color: white;
}
.btn--text {
  background-color: transparent;
  color: #0051ff;
  padding: 4px;
}
.btn--text:hover, .btn--text:focus {
  background-color: rgba(0, 81, 255, 0.1);
}
.btn--disabled, .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--full-width {
  display: block;
  width: 100%;
}
.btn--icon {
  display: inline-flex;
  align-items: center;
}
.btn--icon svg, .btn--icon .icon {
  margin-right: 4px;
}
.btn--icon.icon-right svg, .btn--icon.icon-right .icon {
  margin-right: 0;
  margin-left: 4px;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
  margin-right: -1px;
}
.btn-group .btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-right: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.form-control {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212121;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-control:focus {
  border-color: #0051ff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 81, 255, 0.2);
}
.form-control::placeholder {
  color: rgba(33, 33, 33, 0.5);
}
.form-control:disabled, .form-control[readonly] {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.is-valid {
  border-color: #388e3c;
}
.is-valid:focus {
  border-color: #388e3c;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.2);
}

.is-invalid {
  border-color: #d32f2f;
}
.is-invalid:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}

.form-feedback {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
}
.form-feedback.error {
  color: #d32f2f;
}
.form-feedback.success {
  color: #388e3c;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  margin-bottom: 4px;
}
.form-check:last-child {
  margin-bottom: 0;
}

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.5rem;
}
.form-check-input:checked + .form-check-label::after {
  opacity: 1;
}

.form-check-label {
  margin-bottom: 0;
  cursor: pointer;
}

.custom-checkbox {
  position: relative;
  padding-left: 2rem;
}
.custom-checkbox .custom-checkbox-input {
  position: absolute;
  opacity: 0;
}
.custom-checkbox .custom-checkbox-input:checked ~ .custom-checkbox-label::before {
  background-color: #0051ff;
  border-color: #0051ff;
}
.custom-checkbox .custom-checkbox-input:checked ~ .custom-checkbox-label::after {
  opacity: 1;
}
.custom-checkbox .custom-checkbox-input:focus ~ .custom-checkbox-label::before {
  box-shadow: 0 0 0 3px rgba(0, 81, 255, 0.2);
}
.custom-checkbox .custom-checkbox-label {
  position: relative;
}
.custom-checkbox .custom-checkbox-label::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background-color: white;
  transition: background-color 150ms, border-color 150ms;
}
.custom-checkbox .custom-checkbox-label::after {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.4rem;
  width: 0.4rem;
  height: 0.7rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 150ms;
}

/**
 * Import layout elements (header, footer, navigation)
 */
/**
 * Import page-specific styles
 */
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
}

.navbar-dark .navbar-brand {
  color: #ffffff !important;
}

/**
 * Import theme variations (if any)
 */
.btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  line-height: 1.4;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background-color: #ff5a3c;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #ff3c18;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background-color: transparent;
  color: #ff5a3c;
  border: 1px solid #ff5a3c;
}
.btn-secondary:hover {
  background-color: rgba(255, 90, 60, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.btn-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-dark:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.btn-light {
  background-color: #ffffff;
  color: #1a1a1a;
}
.btn-light:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn-light:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.btn-sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}
.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn .icon {
  margin-right: 0.5rem;
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

div.val-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  cursor: pointer;
  width: 100%;
}
div.val-button a {
  width: 100%;
  height: 54px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff5a3c;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  margin: 10px 0;
  transition: all 0.3s ease;
}
div.val-button a:hover {
  color: #ffffff;
}
div.val-button a p {
  margin: 0;
  height: 54px;
  line-height: 54px;
  position: relative;
  overflow: hidden;
}
div.val-button a p span.base {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border: 1px solid #ff5a3c;
}
div.val-button a p span.bg {
  left: -5%;
  position: absolute;
  background: #ff5a3c;
  width: 0;
  height: 100%;
  transition: all 0.3s ease;
  transform: skewX(-10deg);
}
div.val-button a p span.text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
div.val-button a:hover span.bg {
  width: 110%;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
  .btn-lg {
    padding: 0.85rem 1.75rem;
  }
}
/* Auth Form Styles */
/* Loading container styles */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  text-align: center;
  width: 100%;
}

#loading-message {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #ff5a3c; /* Accent color from profile.scss */
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Auth form styles */
.auth-form {
  width: 720px;
  max-width: 100%;
  margin: 120px auto;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

body #root .auth-form {
  margin: 120px auto;
  width: 720px;
  max-width: 100%;
}

.auth-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  font-size: 28px;
}

.auth-form p {
  margin-bottom: 25px;
  color: #666;
  text-align: center;
  font-size: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background-color: #ff5a3c; /* Accent color from profile.scss */
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e64929; /* Darker version of accent color */
}

.links {
  margin-top: 20px;
  text-align: center;
}

.links a {
  color: #2196f3;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

/* Separator for login page links */
.separator {
  margin: 0 10px;
  color: #ccc;
}

/* Alert styling */
.alert {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 14px;
}

.alert-info {
  background-color: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #bbdefb;
}

/* Error message styles */
.error-message {
  color: #f44336;
  margin: 0.5rem 0;
  font-size: 14px;
}

/* Center the root container */
#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .auth-form,
  body #root .auth-form {
    width: 90%;
    margin: 80px auto;
    padding: 20px;
  }
}
@keyframes roll-in {
  0% {
    top: 10px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation: pulse 1s infinite;
}

.fade-in {
  animation: fade 0.75s ease;
}

.quiz {
  margin: 2em auto;
  min-height: 40vh;
  padding: 20px;
}
.quiz .progress {
  position: relative;
  transition: width 0.4s ease;
  margin-bottom: 1em;
  background: #1a1a1a;
  border-radius: 0;
  width: 100%;
  height: 2em;
  font-family: "arial";
}
.quiz .progress .progress-bar {
  background-color: #1d77cc;
}
.quiz .progress .counter {
  text-align: center;
  font-weight: normal;
  color: #fff;
  height: 100%;
  font-family: "arial";
  font-size: 1.25em;
  margin: auto 0.5em;
  letter-spacing: 0.025em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz .img-fluid {
  margin: 2em auto;
  max-width: 100%;
  display: block;
  max-height: 350px;
}
.quiz .question {
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 0.75em;
  text-align: center;
}
.quiz .option {
  margin-bottom: 0.25em;
  transition: all 0.25s ease;
  font-size: 0.9em;
}
.quiz button:disabled {
  opacity: 0.5;
}
.quiz input[type=radio] {
  position: absolute;
  left: -9999px;
}
.quiz input[type=radio] + label {
  position: relative;
  font-weight: normal;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 5px;
}
.quiz input[type=radio] + label::before {
  text-align: center;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.quiz input[type=radio] + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #222;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.quiz .dim input[type=radio] + label::before, .quiz .correct input[type=radio] + label::before {
  border: 0;
  font-size: 1.2em;
  animation: 0.25s roll-in ease;
}
.quiz .dim input[type=radio] + label::after, .quiz .correct input[type=radio] + label::after {
  display: none;
}
.quiz .correct input[type=radio] + label:before {
  content: "\f00c";
  font-family: "FontAwesome" !important;
  color: #2ecc71;
}
.quiz .dim input[type=radio]:checked + label:before {
  content: "\f00d";
  font-family: "FontAwesome" !important;
  color: #ff3a3a;
}
.quiz input[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.quiz input[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.quiz .dim {
  opacity: 0.5;
}
.quiz .bottom {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.quiz .bottom div {
  font-size: 0.9em;
  margin: 0 auto;
}
.quiz .bottom .next {
  flex: 0 1 10%;
  margin-left: 3em;
}
@media (max-width: 600px) {
  .quiz .bottom div, .quiz .bottom .next {
    flex-basis: 100%;
  }
  .quiz .bottom .next {
    margin-left: 0;
  }
}
.quiz .get-results {
  display: block;
  margin: 2em auto;
}
.quiz .results {
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.banner {
  color: white;
  background: url("https://codehawke.com/img/main.webp") top left/cover no-repeat;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner h1 {
  font-size: 5rem;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
  text-align: center;
}
.banner h3 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
  text-align: center;
}
.banner h6 {
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
  text-align: center;
}

.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
  overflow: scroll;
}

.modalDialog > div {
  max-width: 800px;
  width: 80%;
  position: relative;
  margin: 5% auto;
  padding: 20px;
  border-radius: 3px;
  background: #ffffff;
}

.close {
  font-family: Arial, Helvetica, sans-serif;
  background: #ff3a3a;
  color: #ffffff;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 30px;
  height: 30px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 1px 1px 3px #000000;
  -webkit-box-shadow: 1px 1px 3px #000000;
  box-shadow: 1px 1px 3px #000000;
  padding-top: 5px;
}

.close:hover {
  background: #ff3a3a;
  height: 30px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tabs .videoSpeed {
  margin-right: 5px;
}
.tabs select {
  width: 100%;
  font-size: 18px;
  background: #000;
  color: #fff;
}
.tabs .notes p a {
  color: #f8f8f8;
  text-decoration: none;
}
.tabs .notes p a:hover {
  color: #f8f8f8;
  text-decoration: underline;
}

.tab {
  background: transparent;
  color: #f8f8f8;
  padding: 20px;
  position: relative;
  min-width: 10%;
  cursor: pointer;
}
.tab__input:checked + .tab {
  color: #ffffff;
  border-bottom: 3px solid #ff3a3a;
  font-weight: bolder;
}
.tab__input:checked + .tab + .tab__content {
  display: block;
}
.tab__content {
  color: #f5f5f5;
  display: none;
  padding: 20px;
  line-height: 1.5;
  order: 2;
  width: 100%;
}

.hidden {
  position: absolute;
  clip: rect(0, 0, 0);
  height: 0;
  width: 0;
}

@media (min-width: 1000px) and (max-width: 1500px) {
  .tabs .tab__input:checked + .tab {
    font-size: 0.9rem;
  }
}
@media (min-width: 0) and (max-width: 1000px) {
  .tabs .tab__input:checked + .tab {
    font-size: 0.9rem;
  }
}
.accordion {
  margin-top: 1rem;
  max-height: 613px;
  overflow-y: auto;
}
.accordion .toggle {
  display: none;
}
.accordion .option {
  position: relative;
}
.accordion .title {
  padding-right: 2.5em !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accordion .title:hover {
  cursor: pointer;
}
.accordion .completed {
  color: #a5e26a;
}
.accordion .container-row p.time,
.accordion .container-row h3 {
  font-size: 1rem;
  color: #b2b2b2;
  display: inline-block;
}
.accordion .container-row.active h3,
.accordion .container-row.active p.time {
  color: #ff3a3a;
}
.accordion .container-row h3 {
  margin: 0;
  margin-right: 20px;
}
.accordion .container-row h3:hover {
  color: #ffffff;
}
.accordion .title,
.accordion .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.2s;
  cursor: pointer;
}
.accordion .title {
  padding: 1em;
  display: block;
  color: #ecf0f1;
  font-weight: bold;
}
.accordion .title:after,
.accordion .title:before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #ffffff;
  transition: all 0.2s;
}
.accordion .title:after {
  transform: rotate(90deg);
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
}
.accordion .toggle:checked + .title + .content {
  max-height: max-content;
}
.accordion .toggle:checked + .title:before {
  transform: rotate(90deg) !important;
}

@media (min-width: 0) and (max-width: 1500px) {
  .accordion .title {
    font-size: 0.8rem;
  }
  .accordion .container-row h3,
  .accordion .container-row p.time {
    font-size: 0.8rem;
  }
  .accordion .container-row.a-m-r-20 {
    margin-right: 10px;
    margin-left: 10px;
  }
  .accordion .container-row h3 span {
    margin-right: 0.5rem;
  }
}
/* Ensure this path is correct or remove if not necessary */
.overlay-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.loader {
  width: 100px; /* Adjust the size of your logo */
  height: auto; /* Maintain aspect ratio */
  opacity: 0.8;
}

/* Optional: Add a simple fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loader {
  animation: fadeIn 1s ease-in-out;
}

.hero-wrapper {
  position: fixed;
  top: 100px;
  right: 0;
  height: auto;
  width: auto;
  min-height: 100%;
  min-width: 100%;
  z-index: -9999;
  display: contents;
}

figure {
  margin: 0;
  position: relative;
  display: flex;
}
figure h1 {
  color: #ffffff;
  font-family: "Nobile", sans-serif;
  font-size: 5rem;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 200px;
  height: 150px;
  text-shadow: 2px 2px #000000;
}
figure h2 {
  font-size: 2rem;
  color: #ffffff;
  font-family: "Nobile", sans-serif;
  text-align: center;
  position: absolute;
  width: 80%;
  height: 150px;
  left: 10%;
  top: 350px;
  text-shadow: 2px 2px #000000;
}
figure video {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1200px) {
  figure h1 {
    top: 100px;
  }
  figure h2 {
    top: 225px;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  figure h1 {
    top: 25px;
    font-size: 3.5rem;
  }
  figure h2 {
    top: 125px;
    font-size: 1.5rem;
  }
}
@media (min-width: 320px) and (max-width: 500px) {
  figure h1 {
    top: 25px;
    font-size: 2.5rem;
  }
  figure h2 {
    top: 100px;
    font-size: 1rem;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  figure h1 {
    top: 0;
    font-size: 1rem;
  }
  figure h2 {
    top: 25px;
    font-size: 0.8rem;
  }
}
.stretch {
  background: #ffffff;
  min-height: 100%;
  min-width: 100%;
  background-size: cover;
  margin-top: auto;
  margin-bottom: -22px;
}
.stretch h2 {
  padding: 20px;
  text-align: center;
  color: #121010;
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: bold;
}
.stretch .featured {
  padding-left: 50px;
  padding-right: 50px;
}
.stretch .featured div.featured-item {
  display: flex;
  justify-self: center;
  background: #121010;
  width: 30%;
  margin-right: 20px;
  padding: 20px;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
}
.stretch .featured div.featured-item h3 {
  width: 100%;
  font-size: 2rem;
}
.stretch .featured div.featured-item div:hover {
  cursor: pointer;
}
.stretch .featured div.featured-item div img.logo {
  margin: 0 auto;
  height: 75px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.stretch .featured div.featured-item div img.course-image {
  max-width: 100%;
}

.pricing {
  flex-wrap: nowrap;
  justify-content: center;
}
.pricing div:first-child {
  margin-right: 20px;
}
.pricing div {
  width: 40%;
  padding: 20px;
  text-align: center;
  background: black;
}

.navbar {
  font-size: 16px;
  background: #1a1a1a;
  padding: 1.25rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, padding 0.3s ease;
}
.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar a:hover {
  color: #ff5a3c;
}
.navbar.scrolled {
  padding: 1rem 2rem;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

body.course-page-wrapper nav#mainNav.navbar.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
}

body.course-page-wrapper nav#mainNav.navbar.navbar-dark .navbar-brand {
  color: #ffffff;
}

div.logo {
  height: 50px;
  width: 140px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
div.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.main-nav li {
  text-align: center;
  margin: 0;
  position: relative;
}

.navbar-toggle {
  display: none;
  color: #ffffff;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggle:focus {
  outline: none;
}

.nav-links {
  position: relative;
  padding: 0.5rem 0;
}
.nav-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff5a3c;
  transition: width 0.3s ease;
}
.nav-links:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #202020;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  border-radius: 4px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #ffffff;
  font-weight: 400;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

li#auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
li#auth a {
  color: #ffffff;
}
li#auth a.profile-link {
  color: #ff5a3c;
}
li#auth a.profile-link:hover {
  color: #ff856f;
}
li#auth a:hover {
  color: #ff5a3c;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bootstrap navbar override styles */
.navbar-toggler {
  padding: 0.5rem 0.7rem;
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  color: #ff5a3c;
  border-color: #ff5a3c;
  outline: none;
}
.navbar-toggler .fas {
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .navbar {
    padding: 1rem;
  }
  .navbar.scrolled {
    padding: 0.75rem 1rem;
  }
  .nav-container {
    width: 100%;
  }
  .navbar-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #1a1a1a;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 5;
    gap: 0;
  }
  .main-nav.show {
    max-height: 100vh;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .main-nav li {
    width: 100%;
    margin: 0;
  }
  .main-nav li a {
    display: block;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: left;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    background-color: rgba(33, 37, 41, 0.95);
    width: auto;
    margin-top: 0;
  }
  .dropdown-menu.show {
    max-height: 500px;
    display: block !important;
  }
  .dropdown-menu a {
    padding-left: 2.5rem;
  }
  .dropdown > a::after {
    content: "+";
    margin-left: 0.5rem;
  }
  li#auth {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  li#auth a {
    width: 100%;
  }
  /* Bootstrap navbar collapse override */
  .navbar-collapse {
    background-color: #1a1a1a;
    padding: 1rem 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    margin-top: 10px;
    width: 100%;
  }
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
  .navbar-nav .nav-item {
    width: 100%;
    margin: 5px 0;
    display: block;
  }
  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 10px 15px;
    position: relative;
  }
  /* Fix for dropdown toggles */
  .dropdown-toggle {
    padding-right: 25px !important;
    position: relative;
  }
  /* Dropdown toggle arrow positioning */
  .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  /* Register and Log In links */
  #auth {
    width: 100%;
  }
  #auth .nav-item {
    display: block;
    width: 100%;
  }
  #auth .nav-item .nav-link {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }
  /* Ensure proper vertical stacking */
  .navbar > .container {
    display: flex;
    flex-wrap: wrap;
  }
  /* Dropdown items styling */
  .dropdown-menu {
    display: none;
    width: 100%;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-item {
    padding: 0.75rem 1.5rem;
    display: block;
    width: 100%;
  }
  .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
  }
  /* Bootstrap navbar classes overrides */
  .navbar-nav .nav-link {
    padding: 10px 15px !important;
    display: block !important;
    width: 100% !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
  /* Fix for dropdown items */
  .dropdown-menu .dropdown-item {
    padding: 10px 30px !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  /* Fix for toggle button */
  .navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    padding: 0.5rem 0.7rem !important;
    margin-left: auto !important;
  }
  /* Fix layout in navbar container */
  .navbar > .container {
    padding-right: 15px !important;
    padding-left: 15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}
@media (max-width: 767px) {
  div.logo {
    height: 40px;
    width: 120px;
  }
}
/* Make sure fixed-top navbar works well on mobile */
@media (max-width: 991px) {
  #mainNav.fixed-top .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    z-index: 1000;
  }
  #mainNav.fixed-top .navbar-nav {
    padding: 10px 0;
  }
  #mainNav.fixed-top .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mainNav.fixed-top .nav-item:last-child {
    border-bottom: none;
  }
}

.footer {
  background-color: #1a1a1a;
  color: #f8f8f8;
  padding-bottom: 0;
}
.footer .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer .footer-columns {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.footer .footer-column {
  flex: 1;
  padding: 0 2rem;
}
.footer .footer-column:last-child {
  padding-right: 2rem;
}
.footer .footer-logo {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer .footer-logo .navbar-brand-logo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.footer .footer-title {
  width: 100px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-contact {
  margin-bottom: 15px;
}
.footer .footer-contact p {
  margin: 0;
  padding: 0;
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.footer .footer-btn {
  display: block !important;
  width: max-content;
  padding: 0.6rem 1.25rem;
  background-color: #ff5a3c;
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 15px auto 0;
  clear: both;
  margin-bottom: 20px;
}
.footer .footer-btn:hover {
  background-color: #ff3c18;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.footer .footer-btn:active {
  transform: translateY(0);
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.footer .footer-links a i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  color: #ff5a3c;
  min-width: 1rem;
  text-align: center;
}
.footer .footer-links a:hover {
  color: #ffffff;
}
.footer .footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .footer-bottom p {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #ff5a3c;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer .footer-columns {
    flex-wrap: wrap;
  }
  .footer .footer-column {
    flex: 0 0 50%;
    margin-bottom: 2rem;
  }
  .footer .footer-column:last-child {
    flex: 0 0 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-top {
    padding: 3rem 0 1.5rem;
  }
  .footer .footer-column {
    flex: 0 0 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
body.course nav.navbar {
  background: #202020 !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.course footer {
  background: #202020 !important;
  margin-top: 0 !important;
}

body.course {
  background-color: #ffffff;
}

.main-container {
  display: flex;
  width: 100%;
  max-width: 100%;
}

.main-video {
  flex: 1;
  align-self: start;
  display: flex;
  background-color: #202020;
  width: 100%;
  justify-content: space-between;
}

.hidden {
  visibility: hidden;
}

.right-menu {
  flex: 0 0 23%;
  align-self: stretch;
  margin: 0;
  background: #181c20;
}
.right-menu .title {
  padding: 20px;
}
.right-menu .title h1 {
  text-align: center;
  text-decoration: underline;
  color: #f8f8f8;
  font-size: 1.5rem;
}

.video-player {
  width: 77%;
  height: auto;
  background-color: #202020;
  margin-bottom: 0;
}

video {
  margin-bottom: 0 !important;
  background-color: #202020 !important;
}

.main-video > div {
  padding-bottom: 0 !important;
  background-color: #202020 !important;
  margin-bottom: 0 !important;
}

/* Fix for dark gray bar above footer */
#root {
  background-color: #ffffff;
  padding-bottom: 0;
  margin-bottom: 0;
}

#debug-container {
  background-color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 1301px) and (max-width: 1500px) {
  .main-video {
    flex: 0.75;
  }
  .right-menu {
    flex: 0.25;
  }
  .right-menu .title h1 {
    font-size: 1.2rem;
  }
}
@media (min-width: 0) and (max-width: 1300px) {
  .main-video {
    flex-direction: column;
    flex: 1;
  }
  .right-menu {
    flex: 1;
    width: 100%;
  }
  .right-menu .title h1 {
    font-size: 1.2rem;
  }
  .video-player {
    width: 100%; /* Make video full width on smaller screens */
  }
}
.container,
.container-fluid {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.navbar > .container,
.navbar > .container-fluid {
  max-width: 100% !important;
  width: 100% !important;
}

/* Add spacing to account for fixed navbar */
body.profile-page {
  padding-top: 80px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  body.profile-page {
    padding-top: 70px;
  }
}
.profile-course-container {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Style for the orange buttons to match theme */
.MuiButton-containedPrimary,
button,
.go-to-course,
.update-password-btn {
  background-color: #ff5a3c; /* Accent color */
  color: white;
  transition: background-color 0.3s ease;
  border: none;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}
.MuiButton-containedPrimary:hover,
button:hover,
.go-to-course:hover,
.update-password-btn:hover {
  background-color: #e64929;
}

/* Fix for outlined secondary buttons */
.MuiButton-outlinedSecondary {
  border: 1px solid #ff5a3c;
  color: #ff5a3c;
  background-color: transparent;
}
.MuiButton-outlinedSecondary:hover {
  background-color: rgba(255, 90, 60, 0.08);
  border-color: #e64929;
}

.sign-up-now-button:hover {
  color: white;
}

/* Target specific buttons outside React components */
.course-container + div a,
a.MuiButtonBase-root.MuiButton-root,
button[class*=course i] {
  background-color: #ff5a3c;
}
.course-container + div a:hover,
a.MuiButtonBase-root.MuiButton-root:hover,
button[class*=course i]:hover {
  background-color: #e64929;
}

.course-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .course-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .course-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Ensure all course cards are identical in layout */
.profile-course-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.video-player {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.course-image {
  width: 100%;
  cursor: pointer;
}

.message {
  margin-top: 0;
  font-weight: bolder;
  font-style: italic;
}

.username.center {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* Special styles for the orange buttons shown in screenshot */
a[href*=Course] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

a[href*=Course]:hover,
a[href*=Course]:focus {
  text-decoration: none;
}

/* Add additional styles for the Go to Course buttons */
a:link[href*=Course], a:visited[href*=Course], a:hover[href*=Course], a:active[href*=Course] {
  color: white;
}

/* CHANGE PASSWORD STYLES */
/* Root container styles */
#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
}

/* Change password card */
.change-password-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  margin: 120px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Form inputs */
.password-input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Update password button */
.update-password-btn {
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Icon container */
.lock-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #9c27b0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.return-to-profile {
  color: #2196f3;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}
.return-to-profile:hover {
  text-decoration: underline;
}

/* Copyright section */
.copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* Fix for the footer position */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .change-password-card {
    width: 90%;
    margin: 1rem auto;
  }
}
/* Error message styles */
.error-message {
  color: #f44336;
  margin: 0.5rem 0;
  font-size: 14px;
}

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  overflow: hidden;
}
.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.hero__content {
  max-width: 650px;
  color: #ffffff;
}
.hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 30%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 1;
}

.section {
  padding: 5rem 0;
}
.section--dark {
  background-color: #1a1a1a;
  color: #ffffff;
}
.section--light {
  background-color: #f8f8f8;
  color: #1a1a1a;
}
.section--gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
  color: #ffffff;
}
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section__title--light {
  color: #ffffff;
}
.section__subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.card__text {
  font-size: 1rem;
  color: #707070;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card--horizontal {
  display: flex;
  flex-direction: row;
}
.card--horizontal .card__image {
  width: 35%;
  height: auto;
}
.card--horizontal .card__content {
  width: 65%;
}
.card--dark {
  background-color: #1a1a1a;
}
.card--dark .card__title {
  color: #ffffff;
}
.card--dark .card__text {
  color: #b0b0b0;
}

.feature-box {
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 90, 60, 0.1);
  color: #ff5a3c;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.feature-box__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.feature-box__text {
  font-size: 0.95rem;
  color: #707070;
  line-height: 1.6;
}

.testimonial {
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial__content {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #707070;
}
.testimonial__content::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.1;
  color: #ff5a3c;
}
.testimonial__author {
  display: flex;
  align-items: center;
}
.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}
.testimonial__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
}
.testimonial__position {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__overlay .btn {
  backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 7rem 0 5rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 1.3rem;
  }
  .hero__background {
    width: 100%;
    opacity: 0.15;
  }
  .section {
    padding: 4rem 0;
  }
  .section__title {
    font-size: 2rem;
  }
  .card--horizontal {
    flex-direction: column;
  }
  .card--horizontal .card__image {
    width: 100%;
    height: 240px;
  }
  .card--horizontal .card__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 6rem 0 4rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section__header {
    margin-bottom: 2.5rem;
  }
  .section__title {
    font-size: 1.75rem;
  }
}
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
}

.navbar-dark .navbar-brand {
  color: #ffffff !important;
}

.learning-paths-page .learning-paths-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/img/backgrounds/learning-paths-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.learning-paths-page .learning-paths-hero .hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .learning-paths-page .learning-paths-hero .hero-heading {
    font-size: 2.5rem;
  }
}
.learning-paths-page .learning-paths-hero .hero-text {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .learning-paths-page .learning-paths-hero .hero-text {
    font-size: 1.1rem;
  }
}
.learning-paths-page .path-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}
.learning-paths-page .path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.learning-paths-page .path-card:hover .path-icon i {
  transform: scale(1.1);
  background-color: rgba(var(--primary-rgb), 0.2);
}
.learning-paths-page .path-card:hover .btn-explore-path {
  background-color: var(--primary-dark-color);
  padding-right: 2rem;
}
.learning-paths-page .path-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.1), transparent 70%);
  border-radius: 0 0 0 100%;
  z-index: 0;
}
.learning-paths-page .path-card .path-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.learning-paths-page .path-card .path-icon i {
  background-color: rgba(var(--primary-rgb), 0.1);
  padding: 1.2rem;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.15);
}
.learning-paths-page .path-card .path-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark-color);
  position: relative;
  z-index: 1;
}
.learning-paths-page .path-card .path-description {
  color: var(--gray-color);
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.learning-paths-page .path-card .path-skills {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}
.learning-paths-page .path-card .path-skills .skill-tag {
  background-color: var(--light-gray-color);
  color: var(--dark-color);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  display: inline-block;
  font-weight: 500;
  transition: all 0.2s ease;
}
.learning-paths-page .path-card .path-skills .skill-tag:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
}
.learning-paths-page .path-card .btn-explore-path {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}
.learning-paths-page .path-card .btn-explore-path:hover {
  background-color: var(--primary-dark-color);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.35);
}
.learning-paths-page .path-card .btn-explore-path::after {
  content: "→";
  position: absolute;
  opacity: 0;
  right: 1.5rem;
  transition: all 0.3s ease;
}
.learning-paths-page .path-card .btn-explore-path:hover::after {
  opacity: 1;
}
.learning-paths-page .cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  padding: 4rem;
  margin: 4rem auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}
.learning-paths-page .cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
}
.learning-paths-page .cta-banner .cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}
.learning-paths-page .cta-banner .cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.learning-paths-page .cta-banner .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.learning-paths-page .cta-banner .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .learning-paths-page .cta-banner .cta-content .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
.learning-paths-page .cta-banner .cta-content .cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.learning-paths-page .cta-banner .cta-content .cta-buttons .btn.btn-primary {
  background-color: #fff;
  color: var(--primary-color);
  border-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.learning-paths-page .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}
.learning-paths-page .cta-banner .cta-content .cta-buttons .btn.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.learning-paths-page .cta-banner .cta-content .cta-buttons .btn.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}
.learning-paths-page .learning-paths-section {
  padding: 6rem 0;
}
.learning-paths-page .learning-paths-section .section-header {
  margin-bottom: 4rem;
}
.learning-paths-page .learning-paths-section .section-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}
.learning-paths-page .learning-paths-section .section-header .section-subtitle {
  font-size: 1.3rem;
  color: var(--gray-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.learning-paths-container {
  margin-top: 3rem;
  padding: 0 1.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .learning-paths-container {
    padding: 0 1rem;
  }
  .learning-paths-container .MuiContainer-root {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .learning-paths-container .MuiCard-root {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  }
  .learning-paths-container .MuiCardContent-root {
    padding: 1.5rem !important;
  }
  .learning-paths-container .MuiButton-root {
    min-width: 130px;
    margin-bottom: 0.75rem;
    border-radius: 8px !important;
    padding: 0.6rem 1.25rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
  }
  .learning-paths-container .MuiButton-containedPrimary {
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2) !important;
  }
  .learning-paths-container .MuiLinearProgress-root {
    height: 10px !important;
    border-radius: 5px !important;
  }
  .learning-paths-container .MuiTypography-h6 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .learning-paths-container {
    padding: 0 2rem;
  }
  .learning-paths-container .MuiContainer-root {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .learning-paths-container .MuiCard-root {
    border-radius: 12px !important;
  }
  .learning-paths-container .MuiCardContent-root {
    padding: 1.75rem !important;
  }
  .learning-paths-container .MuiTypography-h4 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
  }
  .learning-paths-container .MuiTypography-h5 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
  }
  .learning-paths-container .MuiLinearProgress-root {
    height: 10px !important;
    border-radius: 5px !important;
  }
}
@media (min-width: 1025px) {
  .learning-paths-container {
    padding: 0 2.5rem;
  }
  .learning-paths-container .MuiContainer-root {
    max-width: 1280px !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .learning-paths-container .MuiCard-root {
    transition: all 0.3s ease !important;
    border-radius: 14px !important;
  }
  .learning-paths-container .MuiCard-root:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  .learning-paths-container .MuiCardContent-root {
    padding: 2rem !important;
  }
  .learning-paths-container .MuiButton-root {
    border-radius: 8px !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
  }
  .learning-paths-container .MuiButton-root:hover {
    transform: translateY(-2px) !important;
  }
  .learning-paths-container .MuiButton-containedPrimary {
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25) !important;
  }
  .learning-paths-container .MuiButton-containedPrimary:hover {
    box-shadow: 0 7px 20px rgba(var(--primary-rgb), 0.3) !important;
  }
  .learning-paths-container .MuiTypography-h4 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
  }
  .learning-paths-container .MuiTypography-h5 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
  }
  .learning-paths-container .MuiPaper-root {
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
  }
  .learning-paths-container .MuiPaper-root:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  }
  .learning-paths-container .MuiLinearProgress-root {
    height: 12px !important;
    border-radius: 6px !important;
  }
}

/* Course catalog styles */
.course-catalog-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 75%, rgba(0, 0, 0, 0.8) 100%), url("/img/main.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}
.course-catalog-header h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.course-catalog-header p.lead {
  color: #f5f5f5;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.course-search {
  max-width: 600px;
  margin: 30px auto;
  position: relative;
}
.course-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
}
.course-search input:focus {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  outline: none;
  background-color: #ffffff;
}
.course-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff5a3c;
  font-size: 18px;
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}

.filter-btn {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}
.filter-btn:hover, .filter-btn.active {
  background-color: #ff5a3c;
  color: white;
  border-color: #ff5a3c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 20px;
}

.course-card {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}
.course-card:hover .course-image img {
  transform: scale(1.05);
}
.course-card i {
  color: #ff5a3c;
}

.course-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-level {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.level-beginner {
  background-color: #4CAF50;
  color: white;
}

.level-intermediate {
  background-color: #2196F3;
  color: white;
}

.level-advanced {
  background-color: #FFC107;
  color: #333;
}

.course-content {
  padding: 20px;
}

.course-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.course-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}
.course-meta div {
  display: flex;
  align-items: center;
}
.course-meta i {
  margin-right: 5px;
  font-size: 14px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tech-tag {
  background-color: #f5f5f5;
  color: #555;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.tech-tag i {
  margin-right: 5px;
  font-size: 12px;
}

.no-courses {
  text-align: center;
  padding: 50px 0;
  font-size: 18px;
  color: #666;
}
.no-courses i {
  font-size: 40px;
  color: #ddd;
  margin-bottom: 15px;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .course-catalog-header {
    padding: 100px 0 60px;
  }
  .course-catalog-header h1 {
    font-size: 2rem;
  }
}
/* Pricing Page Styles */
.pricing-page {
  background-color: #f8f9fa;
  overflow-x: hidden;
  padding-top: 70px; /* Add padding to account for fixed navbar */
}

.hero-section {
  background-color: #0d3559;
  color: #fff;
  padding: 60px 20px 80px;
  overflow: visible;
  margin-top: 12px; /* Add additional space below navbar */
}
.hero-section .hero-heading {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #FFF;
}
.hero-section .hero-subheading {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: #fff;
}

.pricing-section {
  padding: 60px 0;
}
.pricing-section .pricing-toggle-container {
  margin-bottom: 30px;
  position: relative;
  margin: 0 auto 15px;
}
.pricing-section .pricing-toggle {
  width: fit-content;
  margin: 0 auto;
}
.pricing-section .pricing-plans {
  max-width: 1140px;
  margin: 0 auto;
  margin-top: 30px;
}

.pricing-plan {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin: 15px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.pricing-plan.featured {
  border: 2px solid #0275d8;
  transform: scale(1.02);
  z-index: 1;
  background-color: #f0f8ff;
}
.pricing-plan.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 150px;
  background-color: #0275d8;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  animation: pulse 2s infinite;
  z-index: 5;
}

.limited-badge {
  position: absolute;
  top: -12px;
  left: 10px;
  background-color: #dc3545;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 5;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 117, 216, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(2, 117, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 117, 216, 0);
  }
}
.plan-header {
  text-align: center;
  margin-bottom: 25px;
}
.plan-header .plan-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.plan-header .plan-price {
  font-size: 42px;
  font-weight: bold;
  color: #0275d8;
}
.plan-header .original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 24px;
  margin-right: 10px;
}
.plan-header .plan-billing {
  color: #6c757d;
  font-size: 16px;
}
.plan-header .plan-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 5px;
}

.plan-features {
  margin-bottom: 25px;
}
.plan-features h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.plan-features ul {
  list-style: none;
  padding-left: 0;
}
.plan-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.plan-features li:before {
  content: "✓";
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.btn {
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.subscription-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 15px auto 5px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 90%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #0275d8;
  border-color: #0275d8;
  width: auto;
}
.btn-primary:hover {
  background-color: #025aa5;
  border-color: #025aa5;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  color: #0275d8;
  border-color: #0275d8;
}
.btn-outline-primary:hover {
  background-color: #0275d8;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.btn-block {
  display: block;
  width: 100%;
}

.comparison-table {
  margin: 50px auto;
  max-width: 90%;
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-table th {
  background-color: #0d3559;
  color: white;
  text-align: left;
  padding: 15px;
}
.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}
.comparison-table .check {
  color: #28a745;
  font-weight: bold;
}
.comparison-table .x {
  color: #dc3545;
  font-weight: bold;
}

.testimonials-section {
  background-color: #f0f8ff;
  padding: 50px 0;
  margin: 30px 0;
  border-radius: 8px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}
.testimonial-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-stars {
  color: #f0ad4e;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.testimonial-author {
  font-weight: bold;
  margin-top: 10px;
}
.testimonial-author .testimonial-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.animate-on-scroll {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}
.animate-on-scroll.visible {
  transform: translateY(0);
  opacity: 1;
}

.trust-badges {
  text-align: center;
  margin: 30px 0;
}
.trust-badges .trust-badge {
  display: inline-block;
  margin: 0 15px;
  text-align: center;
}
.trust-badges .trust-badge i {
  font-size: 30px;
  color: #0275d8;
  margin-bottom: 10px;
}
.trust-badges .trust-text {
  font-weight: bold;
}

.faq-section {
  padding: 50px 0;
}
.faq-section .faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-question {
  background-color: #f8f9fa;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  padding-right: 40px;
  font-weight: 600;
}
.faq-section .faq-question:after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.3s ease;
}
.faq-section .faq-question.active:after {
  content: "−";
  transform: translateY(-50%);
}
.faq-section .faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fff;
}
.faq-section .faq-answer.show, .faq-section .faq-answer.active {
  padding: 15px;
  max-height: 500px;
}

.toggle-container {
  display: flex;
  position: relative;
  background-color: #f0f3f5;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 10px;
  box-shadow: none;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.toggle-btn {
  padding: 12px 0;
  width: calc(50% - 8px);
  margin: 0 4px;
  border: none;
  background: none;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  transition: all 0.25s ease;
  border-radius: 8px;
  font-size: 15px;
  position: relative;
  color: #555;
  box-shadow: none;
  outline: none;
}
.toggle-btn.active {
  color: white;
  font-weight: bold;
}
.toggle-btn:focus {
  outline: none;
  box-shadow: none;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 8px);
  height: calc(100% - 8px);
  background-color: #FF6347;
  border-radius: 8px;
  transition: left 0.25s ease;
  box-shadow: 0 2px 6px rgba(255, 99, 71, 0.3);
  z-index: 0;
  border: none;
}
.toggle-slider.monthly {
  left: 4px;
}
.toggle-slider.yearly {
  left: calc(50% + 4px);
}

.toggle-discount {
  display: block;
  margin: 0 auto;
  background-color: #ebf7ee;
  color: #28a745;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  width: fit-content;
  margin-top: 12px;
}

.bonus-item {
  background-color: #fdf9e8;
  border-left: 3px solid #f0ad4e;
  padding: 10px 15px;
  margin-top: 20px;
  border-radius: 4px;
}
.bonus-item h5 {
  color: #f0ad4e;
  font-weight: bold;
  margin-bottom: 5px;
}

.bonus-badge {
  display: inline-block;
  background-color: #f0ad4e;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 5px;
  vertical-align: middle;
}

.countdown-timer {
  font-weight: bold;
  color: #dc3545;
  margin-top: 10px;
  font-size: 14px;
}

/* Enhanced CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(135deg, #0d3559 0%, #1a5ba0 50%, #0d3559 100%);
  margin: 50px 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
  padding: 0 50px;
}
.cta-section .row {
  align-items: center;
}
.cta-section .cta-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section .cta-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #FF6347;
  border-radius: 2px;
}
.cta-section .cta-text {
  color: #ffffff;
  opacity: 0.9;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.cta-section .cta-mascot {
  position: absolute;
  bottom: -10px;
  right: 5%;
  width: 120px;
  height: auto;
  z-index: 2;
  display: block;
}
@media (max-width: 992px) {
  .cta-section .cta-mascot {
    display: none;
  }
}
.cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #0d3559;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 15px 0 0;
}
.cta-section .cta-btn .icon {
  margin-left: 8px;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.cta-section .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
  color: #0d3559;
  text-decoration: none;
}
.cta-section .cta-btn:hover .icon {
  transform: translateX(4px);
}

/* Responsive styles */
@media (max-width: 767px) {
  .pricing-plan.featured {
    transform: none;
    margin-top: 30px;
  }
  .pricing-plan.featured:hover {
    transform: translateY(-5px);
  }
  .plan-badge {
    right: 10px;
    top: -12px;
  }
  .limited-badge {
    left: 10px;
    top: -12px;
  }
  .subscription-btn {
    max-width: 100%;
    padding: 16px 20px;
    margin-top: 20px;
  }
  .comparison-table {
    max-width: 100%;
    margin: 30px 0;
  }
  .hero-heading {
    color: #FFF;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .cta-section {
    padding: 40px 0;
  }
  .cta-section .container {
    padding: 0 30px;
  }
  .cta-section .cta-title {
    font-size: 1.8rem;
  }
  .cta-section .cta-text {
    font-size: 1rem;
  }
  .cta-section .cta-btn {
    margin: 10px 0 0 0;
    padding: 12px 20px;
  }
}
.subscription-btn, .credit-card-btn, .btn-stripe,
.subscription-btn.btn-stripe, .btn-paypal,
.subscription-btn.btn-paypal,
.paypal-direct-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.btn-paypal,
.subscription-btn.btn-paypal,
.paypal-direct-btn {
  background-color: #0070ba;
}
.btn-paypal:hover,
.subscription-btn.btn-paypal:hover,
.paypal-direct-btn:hover {
  background-color: #003087;
  color: #ffffff;
  text-decoration: none;
}

.btn-stripe,
.subscription-btn.btn-stripe {
  background-color: #635bff;
}
.btn-stripe:hover,
.subscription-btn.btn-stripe:hover {
  background-color: #4b45c6;
  color: #ffffff;
  text-decoration: none;
}

.credit-card-btn {
  background-color: #635bff;
}
.credit-card-btn:hover {
  background-color: #4b45c6;
  color: #ffffff;
}

.subscription-btn {
  margin-bottom: 15px;
  font-size: 16px;
}
.subscription-btn.btn-primary {
  background-color: #ff5a3c;
}
.subscription-btn.btn-primary:hover {
  background-color: #e64929;
  color: #ffffff;
}

.plan-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.plan-toggle-container .toggle-label {
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.plan-toggle-container .toggle-label.active {
  color: #ff5a3c;
  font-weight: 700;
}
.plan-toggle-container .toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 15px;
}
.plan-toggle-container .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.plan-toggle-container .toggle-switch input:checked + .slider {
  background-color: #ff5a3c;
}
.plan-toggle-container .toggle-switch input:checked + .slider:before {
  transform: translateX(30px);
}
.plan-toggle-container .toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: all 0.3s ease;
  border-radius: 34px;
}
.plan-toggle-container .toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.pricing-card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.pricing-card .card-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pricing-card .card-header h3 {
  margin-bottom: 5px;
  font-weight: 700;
}
.pricing-card .card-header .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff5a3c;
}
.pricing-card .card-header .price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  position: relative;
  top: 0.5rem;
}
.pricing-card .card-header .price .period {
  font-size: 1rem;
  color: #212121;
  opacity: 0.7;
}
.pricing-card .card-header .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.5rem;
}
.pricing-card .card-header .save-text {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(255, 90, 60, 0.1);
  color: #ff5a3c;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
}
.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.pricing-card .features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.pricing-card .features-list li:last-child {
  border-bottom: none;
}
.pricing-card .features-list li i {
  color: #ff5a3c;
  margin-right: 10px;
}
.pricing-card.featured {
  border: 2px solid #ff5a3c;
  position: relative;
}
.pricing-card.featured:before {
  content: "BEST VALUE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5a3c;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
}
.pricing-card.lifetime {
  background-color: #f9f9f9;
}
.pricing-card.lifetime .card-header .price {
  color: #0051ff;
}

/* Course page styles */
.course-page-wrapper {
  --course-accent-color: #d83c1e;
  --course-accent-hover: #b02e17;
  /* Code background pattern */
  /* Link styles */
  /* Tech icons */
  /* CTA Buttons */
  /* Hero section styles */
  /* Sticky CTA and progress bar */
  /* Course card and content styling */
  /* Course info section */
  /* Badges styling */
  /* Secondary actions */
  /* Selling points */
  /* Audience section */
  /* Testimonial section */
  /* Instructor section */
  /* Animation classes */
  /* Special fix for color conflicts */
  /* Fix for nav and footer links */
  /* Animation keyframes */
  /* Media queries */
}
.course-page-wrapper .code-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.3;
}
.course-page-wrapper a[href*=course],
.course-page-wrapper a[href*=Course],
.course-page-wrapper [class*=course i] a,
.course-page-wrapper .audience-point a,
.course-page-wrapper .audience-card a {
  background-color: transparent !important;
  color: var(--course-accent-color) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.course-page-wrapper a[href*=course]:hover,
.course-page-wrapper a[href*=Course]:hover,
.course-page-wrapper [class*=course i] a:hover,
.course-page-wrapper .audience-point a:hover,
.course-page-wrapper .audience-card a:hover {
  text-decoration: underline;
  color: var(--course-accent-hover) !important;
}
.course-page-wrapper .tech-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.course-page-wrapper .tech-icons i {
  font-size: 2.2rem;
  color: var(--course-accent-color) !important;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.course-page-wrapper .tech-icons i:hover {
  opacity: 1;
  transform: scale(1.2);
  color: var(--course-accent-hover) !important;
  text-shadow: 0 0 15px rgba(255, 90, 60, 0.5);
}
.course-page-wrapper .cta-button, .course-page-wrapper .cta-button-large {
  background-color: #e04a2f !important;
  color: white !important;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.course-page-wrapper .cta-button:hover, .course-page-wrapper .cta-button-large:hover {
  background-color: #e04a2f !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 90, 60, 0.2);
  text-decoration: none;
}
.course-page-wrapper .cta-button-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.course-page-wrapper .cta-button-large:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
}
.course-page-wrapper .cta-button-secondary {
  background-color: transparent !important;
  border: 2px solid white;
}
.course-page-wrapper .cta-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
}
.course-page-wrapper .cta-button-secondary:after {
  content: " →";
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.course-page-wrapper .cta-button-secondary:hover:after {
  transform: translateX(4px);
}
.course-page-wrapper .blinking-cursor {
  animation: blink 1s infinite;
  position: absolute;
  bottom: 20%;
  right: 15%;
  font-size: 5rem;
  font-weight: 100;
  color: var(--course-accent-color);
  opacity: 0.3;
}
.course-page-wrapper .hero-section {
  position: relative;
  height: 80vh;
  min-height: 580px;
  overflow: hidden;
  background-color: #000;
  margin-top: 3.75rem;
}
.course-page-wrapper .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}
.course-page-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 30, 0.5) 100%);
  z-index: 2;
}
.course-page-wrapper .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.course-page-wrapper .hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  font-family: "Inter", sans-serif;
  line-height: 1.3;
}
.course-page-wrapper .hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  text-align: center;
}
.course-page-wrapper .hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.course-page-wrapper .cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.course-page-wrapper .scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.course-page-wrapper .scroll-arrow:hover {
  opacity: 1;
}
.course-page-wrapper .sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  color: white;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.course-page-wrapper .sticky-cta.visible {
  transform: translateY(0);
}
.course-page-wrapper .progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--course-accent-color);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}
.course-page-wrapper .course-details {
  background-color: #f8f9fa;
  padding: 4rem 0;
  border-bottom: 1px solid #e9ecef;
}
.course-page-wrapper .course-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  margin: 1.5rem;
  margin-bottom: 2.5rem;
}
.course-page-wrapper .premium-card {
  position: relative;
  border: 1px solid rgba(255, 90, 60, 0.2);
  overflow: hidden;
  background: #fff;
  margin: 1.5rem;
  margin-bottom: 2.5rem;
}
.course-page-wrapper .premium-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--course-accent-color), #ff8a3c);
  color: white;
  padding: 0.8rem;
  border-radius: 0 0 0 1rem;
  box-shadow: 0 2px 8px rgba(255, 90, 60, 0.3);
  z-index: 1;
}
.course-page-wrapper .premium-badge i {
  font-size: 1.5rem;
}
.course-page-wrapper .content-section {
  padding: 4rem 0;
}
.course-page-wrapper .section-title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--base-color);
}
.course-page-wrapper .section-title i {
  margin-right: 0.5rem;
  color: var(--course-accent-color) !important;
}
.course-page-wrapper .section-subtitle {
  font-weight: 300;
  color: var(--light-text);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
.course-page-wrapper .content-list {
  margin-bottom: 2rem;
}
.course-page-wrapper .content-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.course-page-wrapper .content-list li:before {
  content: "•";
  color: var(--course-accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.course-page-wrapper .content-list.enhanced {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-page-wrapper .content-list.enhanced li {
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  list-style-type: none;
}
.course-page-wrapper .content-list.enhanced li:before {
  display: none;
}
.course-page-wrapper .content-list.enhanced li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--course-accent-color);
  width: 1.5rem;
  text-align: center;
}
.course-page-wrapper .content-group {
  border-left: 2px dashed rgba(255, 90, 60, 0.1);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.course-page-wrapper .content-group-title {
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.course-page-wrapper .course-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.course-page-wrapper .course-info-item {
  display: flex;
  align-items: center;
  margin: 0.5rem 1rem;
  color: #6c757d;
}
.course-page-wrapper .course-info-item i {
  margin-right: 8px;
  color: var(--course-accent-color) !important;
}
.course-page-wrapper .badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 0.8rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.course-page-wrapper .non-subscription-badge, .course-page-wrapper .guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}
.course-page-wrapper .non-subscription-badge {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.course-page-wrapper .guarantee-badge {
  background-color: #e3f2fd;
  color: #1565c0;
}
.course-page-wrapper .secondary-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
}
.course-page-wrapper .secondary-action {
  color: #6c757d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.course-page-wrapper .secondary-action:hover {
  color: var(--course-accent-color) !important;
  text-decoration: none;
}
.course-page-wrapper .selling-points {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.course-page-wrapper .selling-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
}
.course-page-wrapper .selling-point i {
  font-size: 1.5rem;
  color: var(--course-accent-color);
  margin-bottom: 0.5rem;
}
.course-page-wrapper .selling-point p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #495057;
}
.course-page-wrapper .audience-card {
  background-color: #f8f9fa;
}
.course-page-wrapper .audience-personas {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 1.5rem 0;
}
.course-page-wrapper .audience-persona {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.course-page-wrapper .audience-persona:hover {
  transform: translateY(-5px);
}
.course-page-wrapper .audience-persona:hover .persona-icon {
  box-shadow: 0 5px 15px rgba(255, 90, 60, 0.3);
  background-color: rgba(255, 90, 60, 0.2);
}
.course-page-wrapper .persona-icon {
  font-size: 2rem;
  color: var(--course-accent-color);
  margin-bottom: 0.5rem;
  background-color: rgba(255, 90, 60, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.course-page-wrapper .audience-points {
  margin-top: 2rem;
}
.course-page-wrapper .audience-point {
  margin-bottom: 1.5rem;
}
.course-page-wrapper .audience-point p {
  margin-bottom: 0;
  color: #6c757d;
}
.course-page-wrapper .audience-point .badge {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: none;
  padding: 0;
  color: var(--course-accent-color) !important;
}
.course-page-wrapper .testimonials-section {
  background-color: #fff;
  padding: 4rem 0;
  margin: 20px;
  border-top: 1px solid #e9ecef;
}
.course-page-wrapper .testimonials-section .row {
  margin-right: -20px;
  margin-left: -20px;
}
.course-page-wrapper .testimonials-section .row .col-md-4 {
  padding-left: 20px;
  padding-right: 20px;
}
.course-page-wrapper .testimonial-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.course-page-wrapper .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.course-page-wrapper .testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.course-page-wrapper .testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.course-page-wrapper .testimonial-text:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  opacity: 0.1;
  left: -20px;
  top: -20px;
  font-family: Georgia, serif;
}
.course-page-wrapper .testimonial-author {
  display: flex;
  align-items: center;
}
.course-page-wrapper .testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}
.course-page-wrapper .testimonial-info h5 {
  margin-bottom: 0.25rem;
}
.course-page-wrapper .testimonial-info p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 0;
}
.course-page-wrapper .instructor-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}
.course-page-wrapper .instructor-card .row {
  margin: 0;
}
.course-page-wrapper .instructor-card .row > div {
  padding: 2rem;
}
.course-page-wrapper .instructor-image-container {
  position: relative;
  margin-bottom: 1.5rem;
}
.course-page-wrapper .profile-image {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 180px;
  height: auto;
  border: 5px solid white;
}
.course-page-wrapper .instructor-social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.course-page-wrapper .proof-badge {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.course-page-wrapper .proof-badge i {
  color: var(--course-accent-color) !important;
}
.course-page-wrapper .instructor-quote {
  position: relative;
  background-color: #fff;
  border-left: 3px solid var(--course-accent-color);
  padding: 1.5rem 1.5rem 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.course-page-wrapper .quote-icon {
  color: var(--course-accent-color);
  font-size: 1.5rem;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 10px;
}
.course-page-wrapper .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.course-page-wrapper .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.course-page-wrapper [class*=badge] {
  color: var(--course-accent-color) !important;
}
.course-page-wrapper .footer a,
.course-page-wrapper .footer__btn {
  color: inherit !important;
  background: none !important;
  display: block;
}
.course-page-wrapper .navbar a {
  color: inherit !important;
  background: none !important;
}
@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.course-page-wrapper .pulse-animation {
  animation: pulse 2s infinite;
}
@media (max-width: 991px) {
  .course-page-wrapper .hero-content h1 {
    font-size: 3rem;
  }
  .course-page-wrapper .hero-content p {
    font-size: 1.1rem;
  }
  .course-page-wrapper .audience-personas {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .course-page-wrapper .hero-section {
    height: 70vh;
  }
  .course-page-wrapper .hero-content h1 {
    font-size: 2.5rem;
  }
  .course-page-wrapper .course-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .course-page-wrapper .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .course-page-wrapper .tech-icons {
    gap: 1rem;
  }
  .course-page-wrapper .tech-icons i {
    font-size: 1.8rem;
  }
}

/* Homepage styles */
.homepage-wrapper {
  --homepage-accent-color: #d83c1e;
  --homepage-accent-hover: #b02e17;
  /* Add your homepage specific styles here */
  /* Add more homepage specific styles as needed */
}
.homepage-wrapper .hero-section {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}
.homepage-wrapper .feature-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.homepage-wrapper .cta-section {
  padding: 3rem 0;
  background-color: #f1f1f1;
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f8f8;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #ff5a3c;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ff2f09;
}

video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
video:hover {
  cursor: pointer;
}

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

.section {
  padding: 4rem 0;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.m-5 {
  margin: 3rem;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-3 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-5 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.add-padding {
  padding: 1.5rem;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-padding-top {
  padding-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: 0;
}

.n-m-l {
  margin-left: 0;
}

.a-m-l-20 {
  margin-left: 1.25rem;
}

.a-m-r-20 {
  margin-right: 1.25rem;
}

.a-m-b-20 {
  margin-bottom: 1.25rem;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.username span {
  color: #ff5a3c;
  font-weight: 600;
}

.center {
  text-align: center;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.video-container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.profile-course-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright {
  color: #b0b0b0;
  text-align: center;
  font-size: 0.9rem;
  padding: 1.5rem 0;
}

.data-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0.75rem;
}
.data-label span.label {
  font-weight: 600;
  color: #1a1a1a;
  margin-right: 0.5rem;
}
.data-label i {
  margin-right: 0.5rem;
  color: #ff5a3c;
}

@media (max-width: 768px) {
  .video-container,
  .profile-course-container {
    flex-direction: column;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  nav a {
    font-size: 1rem;
  }
  .video {
    margin-bottom: 1.5rem;
  }
  h1, h2, h3, h4, h5 {
    word-wrap: break-word;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4, h5 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 1rem;
  }
}

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