.course-page-wrapper{overflow-x:hidden}
/* Fix the navbar brand color and hover effects */
.course-page-wrapper #mainNav .navbar-brand,
.course-page-wrapper #mainNav a.navbar-brand{
  color:#fff !important;
  transition:all .3s ease
}
.course-page-wrapper #mainNav .navbar-brand:hover,
.course-page-wrapper #mainNav a.navbar-brand:hover{
  color:#ff5a3c !important
}

/* Fix navbar logo styles */
.course-page-wrapper #mainNav .navbar-logo{
  display:flex;
  align-items:center
}
.course-page-wrapper #mainNav .navbar-logo:hover{
  color:#ff5a3c
}
.course-page-wrapper #mainNav .navbar-logo:hover .navbar-brand{
  color:#ff5a3c !important
}

/* Fix dropdown menu styles */
.course-page-wrapper #mainNav .dropdown-menu{
  background-color:#212529;
  border:none
}
.course-page-wrapper #mainNav .dropdown-menu .dropdown-item{
  color:#fff;
  transition:color .3s ease,background-color .3s ease;
  text-decoration: none !important
}
.course-page-wrapper #mainNav .dropdown-menu .dropdown-item:hover{
  color:#ff5a3c;
  background-color:rgba(0,0,0,0);
  text-decoration: none !important
}

/* Ensure all nav links are white with orange hover and no underline */
.course-page-wrapper #mainNav .nav-link,
.course-page-wrapper #mainNav .navbar-nav .nav-link,
.course-page-wrapper #mainNav .navbar-collapse .nav-link,
.course-page-wrapper #mainNav .navbar-nav li a,
.course-page-wrapper #mainNav .dropdown-toggle,
.course-page-wrapper #mainNav .nav-item > a,
.course-page-wrapper #mainNav .navbar-nav .nav-item .nav-link {
  color:#fff !important;
  transition:color .3s ease;
  text-decoration: none !important
}

.course-page-wrapper #mainNav .nav-link:hover,
.course-page-wrapper #mainNav .navbar-nav .nav-link:hover,
.course-page-wrapper #mainNav .navbar-collapse .nav-link:hover,
.course-page-wrapper #mainNav .navbar-nav li a:hover,
.course-page-wrapper #mainNav .dropdown-toggle:hover,
.course-page-wrapper #mainNav .nav-item > a:hover,
.course-page-wrapper #mainNav .navbar-nav .nav-item .nav-link:hover {
  color:#ff5a3c !important;
  text-decoration: none !important
}

/* Specifically targeting the dropdown items */
.course-page-wrapper #mainNav .dropdown-menu a,
.course-page-wrapper #mainNav .dropdown-menu a:hover,
.course-page-wrapper #mainNav li.dropdown .dropdown-menu a {
  text-decoration: none !important
}

/* Rain Animation Container */
.course-page-wrapper .binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
}

/* Binary characters (0 and 1) */
.course-page-wrapper .binary {
  position: absolute;
  color: #32CD32;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  animation-name: binaryFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  top: -20px;
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.7);
}

/* React Icon Styles */
.course-page-wrapper .binary.react-icon {
  color: #61DAFB; /* React blue */
  font-size: 20px;
  text-shadow: 0 0 8px rgba(97, 218, 251, 0.8);
  animation-timing-function: ease-in-out;
  animation-name: techFall;
  filter: drop-shadow(0 0 5px rgba(97, 218, 251, 0.5));
}

/* Tech Icon Styles */
.course-page-wrapper .binary-rain i.tech-icon,
.course-page-wrapper .binary-rain i.binary.tech-icon {
  position: absolute;
  top: -20px;
  font-size: 22px;
  animation-timing-function: ease-in-out;
  animation-name: techFall;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  opacity: 0;
}

/* Font Awesome icons specific styles */
.course-page-wrapper .binary-rain i.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400;
  display: inline-block;
}

/* Standard falling animation for binary */
@keyframes binaryFall {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.7;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(800px);
    opacity: 0;
  }
}

/* Enhanced animation for tech icons */
@keyframes techFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.9;
  }
  25% {
    transform: translateY(200px) rotate(90deg);
  }
  50% {
    transform: translateY(400px) rotate(180deg);
  }
  75% {
    transform: translateY(600px) rotate(270deg);
  }
  95% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(800px) rotate(360deg);
    opacity: 0;
  }
}

/* MUI video player fix - override min-width on video controls */
.MuiBox-root,
.MuiBox-root.css-79e1bk,
.MuiPaper-root,
.MuiCard-root,
.MuiPaper-rounded,
.css-18f0ccn-MuiPaper-root-MuiCard-root {
  min-width: auto !important;
  width: auto !important;
}

/* Video controls should be visible */
video,
.MuiBox-root video,
.MuiPaper-root video,
.MuiCard-root video {
  min-width: auto !important;
  width: 100% !important;
}

/* Fix min-width issue specifically on video player container */
div[class*="MuiBox-root"],
div[class*="MuiPaper-root"],
div[class*="MuiCard-root"],
div[class*="MuiPaper-elevation"] {
  min-width: unset !important;
}

/* Override min-width on all elements that use it */
[style*="min-width: 100%"] {
  min-width: auto !important;
}

/* Specific fix for MUI Paper components in video player */
.main-video .MuiPaper-root {
  min-width: auto !important;
  width: auto !important;
}

/* Ensure video player container and controls are visible */
.MuiBox-root.css-79e1bk {
  min-width: auto !important;
  height: auto !important;
  overflow: visible !important;
}

/* Rest of the existing styles */
.course-page-wrapper .footer__btn,.course-page-wrapper footer.footer address a.footer__btn,.course-page-wrapper .footer-btn,.course-page-wrapper footer.footer .footer-btn,.course-page-wrapper a.footer-btn,.course-page-wrapper footer a.footer-btn{display:inline-flex;background-color:#ff5a3c !important;color:#ffffff !important;border:none;text-decoration:none;padding:8px 15px;border-radius:4px;font-weight:500;transition:all .3s ease}.course-page-wrapper .footer__btn:hover,.course-page-wrapper footer.footer address a.footer__btn:hover,.course-page-wrapper .footer-btn:hover,.course-page-wrapper footer.footer .footer-btn:hover,.course-page-wrapper a.footer-btn:hover,.course-page-wrapper footer a.footer-btn:hover{background-color:#e64929 !important;color:#ffffff !important;transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,0.2)}.course-page-wrapper .course-card,.course-page-wrapper .instructor-card,.course-page-wrapper .testimonial-card{margin:20px;border-radius:6px;box-shadow:0 8px 20px rgba(0,0,0,0.15);padding:30px;background-color:#f9f9f9;border:1px solid rgba(0,0,0,0.06);position:relative;overflow:hidden;transition:transform 0.3s ease,box-shadow 0.3s ease}.course-page-wrapper .course-card:hover,.course-page-wrapper .instructor-card:hover,.course-page-wrapper .testimonial-card:hover{transform:translateY(-5px);box-shadow:0 12px 25px rgba(0,0,0,0.18)}.course-page-wrapper .audience-card{background:linear-gradient(to bottom right,#f9f9f9,#f5f5f5)}.course-page-wrapper .course-details .premium-card{margin:20px auto;max-width:900px;background-color:#fff}.course-page-wrapper .cta-button,.course-page-wrapper a.cta-button,.course-page-wrapper .cta-button-large,.course-page-wrapper a.cta-button-large,.course-page-wrapper .pulse-animation{display:inline-block;background-color:#ff5a3c;color:#fff;font-weight:600;text-decoration:none;padding:12px 25px;border-radius:6px;border:2px solid #ff5a3c;transition:all .3s ease;text-transform:uppercase;letter-spacing:.5px}.course-page-wrapper .cta-button:hover,.course-page-wrapper a.cta-button:hover,.course-page-wrapper .cta-button-large:hover,.course-page-wrapper a.cta-button-large:hover,.course-page-wrapper .pulse-animation:hover{background-color:#e64929;border-color:#e64929;color:#fff;transform:translateY(-2px);box-shadow:0 4px 8px rgba(0,0,0,.1);text-decoration:none !important}.course-page-wrapper .cta-button-large,.course-page-wrapper a.cta-button-large{font-size:1.1rem;padding:14px 28px}.course-page-wrapper .cta-button-secondary{background-color:rgba(0,0,0,0);border:2px solid #fff;color:#fff}.course-page-wrapper .cta-button-secondary:hover{background-color:rgba(255,255,255,.2);color:#fff;border-color:#fff}

/* Specifically fix the LEARN MORE button hover state */
.course-page-wrapper .hero-content a[href="#course-details"],
.course-page-wrapper a.cta-button[href="#course-details"] {
  background-color: #ff5a3c;
  color: #fff !important;
  border: 2px solid #ff5a3c;
  transition: all .3s ease;
}

.course-page-wrapper .hero-content a[href="#course-details"]:hover,
.course-page-wrapper a.cta-button[href="#course-details"]:hover {
  background-color: #e64929;
  color: #fff !important;
  border-color: #e64929;
}

@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(255,90,60,.4)}70%{box-shadow:0 0 0 10px rgba(255,90,60,0)}100%{box-shadow:0 0 0 0 rgba(255,90,60,0)}}.course-page-wrapper .pulse-animation{animation:pulse 2s infinite}.course-page-wrapper .hero-section{position:relative;min-height:500px;display:flex;align-items:center;justify-content:center;color:#fff;overflow:hidden}.course-page-wrapper .hero-section .hero-video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;z-index:-2}.course-page-wrapper .hero-section .hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.6);z-index:-1}.course-page-wrapper .hero-section .hero-content{text-align:center;padding:2rem;max-width:800px}.course-page-wrapper .hero-section .hero-content h1{font-size:3rem;font-weight:700;margin-bottom:1rem}.course-page-wrapper .hero-section .hero-content p{font-size:1.2rem;margin-bottom:2rem}.course-page-wrapper .hero-section .hero-content .hero-subtitle{text-transform:uppercase;letter-spacing:2px;font-weight:500;display:block;margin-bottom:1rem;color:#ff5a3c}.course-page-wrapper .hero-section .hero-content .cta-buttons{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}.course-page-wrapper .sticky-cta{position:sticky;top:0;background-color:#212529;color:#fff;z-index:100;transform:translateY(-100%);transition:transform .3s ease}.course-page-wrapper .sticky-cta.visible{transform:translateY(0)}.course-page-wrapper .sticky-cta .sticky-cta-text{color:#fff;padding-left:40px}.course-page-wrapper .sticky-cta .sticky-cta-button-container{padding:40px}.course-page-wrapper .progress-bar{position:fixed;top:0;left:0;width:0%;height:3px;background-color:#ff5a3c;z-index:9999;transition:width .1s ease}.course-page-wrapper .premium-badge{position:absolute;top:10px;right:20px;width:40px;height:40px;border-radius:50%;background-color:#ffd700;display:flex;align-items:center;justify-content:center;color:#212121;font-size:1.2rem;box-shadow:0 2px 5px rgba(0,0,0,0.2)}.course-page-wrapper .badges-container{display:flex;justify-content:center;gap:1rem;margin-bottom:1rem;flex-wrap:wrap}.course-page-wrapper .badges-container .non-subscription-badge,.course-page-wrapper .badges-container .guarantee-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:50px;font-size:.9rem;font-weight:500}.course-page-wrapper .badges-container .non-subscription-badge{background-color:rgba(255,90,60,.1);color:#ff5a3c}.course-page-wrapper .badges-container .guarantee-badge{background-color:rgba(0,81,255,.1);color:#0051ff}.course-page-wrapper .animate-on-scroll{opacity:0;transform:translateY(30px);transition:opacity .5s ease,transform .5s ease}.course-page-wrapper .animate-on-scroll.visible{opacity:1;transform:translateY(0)}

/* Specifically target the Subscribe Now button hover state */
.course-page-wrapper a[href="/pricing"].cta-button-large:hover,
.course-page-wrapper a[href="/pricing"].pulse-animation:hover {
  color: white !important;
  text-decoration: none !important;
}

/* Make the lock icon inside the Subscribe Now button turn white on hover */
.course-page-wrapper a[href="/pricing"].cta-button-large:hover i,
.course-page-wrapper a[href="/pricing"].pulse-animation:hover i {
  color: white !important;
}

/*# sourceMappingURL=course-page.css.map */

.course-page-wrapper .instructor-hero{position:relative;background:linear-gradient(135deg,#f0f4f8 0%,#e8eef4 100%);padding:80px 0;margin:60px 0;overflow:hidden}.course-page-wrapper .instructor-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('/img/pattern-dots.png') repeat;opacity:0.05;z-index:1}.course-page-wrapper .instructor-hero .hero-bg-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 50% 50%,rgba(0,81,255,0.03) 0%,rgba(0,0,0,0) 70%);z-index:2}.course-page-wrapper .instructor-hero .container{position:relative;z-index:3;padding:0}.course-page-wrapper .instructor-hero .instructor-wrapper{background-color:rgba(255,255,255,0.9);border-radius:12px;padding:40px;box-shadow:0 8px 20px rgba(0,0,0,0.15);border:1px solid rgba(0,0,0,0.06);margin:0 20px;max-width:calc(100% - 40px);width:calc(100% - 40px)}.course-page-wrapper .instructor-hero .instructor-image-container{position:relative;display:inline-block;margin-bottom:30px}.course-page-wrapper .instructor-hero .instructor-image-container .image-glow{position:absolute;width:100%;height:100%;border-radius:50%;background:radial-gradient(circle at center,rgba(255,90,60,0.2) 0%,rgba(255,90,60,0) 70%);transform:scale(1.2);z-index:-1;animation:pulseGlow 3s infinite ease-in-out}.course-page-wrapper .instructor-hero .instructor-image-container .profile-image{width:160px;height:160px;border-radius:50%;object-fit:cover;border:4px solid white;box-shadow:0 8px 25px rgba(0,0,0,0.1);transition:transform 0.3s ease}.course-page-wrapper .instructor-hero .instructor-image-container .profile-image:hover{transform:scale(1.05)}.course-page-wrapper .instructor-hero .instructor-heading{font-size:2.2rem;font-weight:700;margin-bottom:20px;color:#212121;position:relative;display:inline-block}.course-page-wrapper .instructor-hero .instructor-heading::after{content:'';position:absolute;left:0;bottom:-8px;width:60px;height:3px;background-color:#ff5a3c}.course-page-wrapper .instructor-hero .instructor-social-proof{display:flex;flex-direction:column;gap:12px;margin-top:20px}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:8px;font-size:0.9rem;font-weight:600;background-color:rgba(255,255,255,0.7);box-shadow:0 4px 15px rgba(0,0,0,0.05);transition:all 0.3s ease}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 6px 20px rgba(0,0,0,0.15);background-color:rgba(255,255,255,0.9)}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge:hover i{transform:scale(1.2);color:#ff5a3c}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge i{font-size:1.2rem;transition:all 0.3s ease;color:#5d6c7b}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge .count-up{font-weight:700;color:#ff5a3c}.course-page-wrapper .instructor-hero .career-timeline{margin-top:40px;padding-top:20px;border-top:1px solid rgba(0,0,0,0.1)}.course-page-wrapper .instructor-hero .career-timeline h4{font-weight:600;margin-bottom:25px;color:#212121}.course-page-wrapper .instructor-hero .career-timeline .timeline-container{display:flex;justify-content:space-between;position:relative}.course-page-wrapper .instructor-hero .career-timeline .timeline-container::before{content:'';position:absolute;top:30px;left:25px;right:25px;height:2px;background:linear-gradient(to right,#ff5a3c,#0051ff);z-index:1}.course-page-wrapper .instructor-hero .career-timeline .timeline-item{position:relative;z-index:2;flex:1;text-align:center;padding:0 10px}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-icon{width:50px;height:50px;border-radius:50%;background-color:white;box-shadow:0 5px 15px rgba(0,0,0,0.1);display:flex;align-items:center;justify-content:center;margin:0 auto 15px;font-size:20px;border:2px solid #f0f4f8;transition:all 0.3s ease}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-content h5{font-weight:700;color:#0051ff;margin-bottom:5px;font-size:1.1rem}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-content p{font-size:0.85rem;color:#616161;line-height:1.4}.course-page-wrapper .instructor-hero .career-timeline .timeline-item:hover .timeline-icon{transform:scale(1.1);box-shadow:0 8px 20px rgba(0,0,0,0.15)}@media (max-width: 767px){.course-page-wrapper .instructor-hero{padding:60px 0}.course-page-wrapper .instructor-hero .instructor-wrapper{padding:30px 20px}.course-page-wrapper .instructor-hero .instructor-image-container{margin-bottom:20px}.course-page-wrapper .instructor-hero .instructor-image-container .profile-image{width:140px;height:140px}.course-page-wrapper .instructor-hero .instructor-social-proof{flex-direction:row;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge{margin:0 5px 10px;flex-basis:calc(50% - 20px)}.course-page-wrapper .instructor-hero .career-timeline .timeline-container{flex-direction:column;gap:30px}.course-page-wrapper .instructor-hero .career-timeline .timeline-container::before{top:0;bottom:0;left:25px;right:auto;width:2px;height:100%}.course-page-wrapper .instructor-hero .career-timeline .timeline-item{display:flex;align-items:center;text-align:left;padding:0}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-icon{margin:0;flex-shrink:0}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-content{margin-left:15px}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-content h5{font-size:1rem;margin-bottom:2px}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-content p{font-size:0.8rem;margin-bottom:0}}@media (max-width: 576px){.course-page-wrapper .instructor-hero .instructor-social-proof .proof-badge{flex-basis:100%;justify-content:center}.course-page-wrapper .instructor-hero .career-timeline .timeline-item{margin-bottom:20px}.course-page-wrapper .instructor-hero .career-timeline .timeline-item .timeline-icon{width:40px;height:40px;font-size:16px}}

/* Specifically target the Subscribe Now button hover state */
