@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

@font-face {
  font-family: Delight;
  src: url(./Assets/687195691822667578eb11cf_Delight-VF.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Delight", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
  background-color: #000000;
}

/* Loading state */
body.loading {
  overflow: hidden;
}

body.loading .content {
  opacity: 0;
}

/* Header Styles */
header {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 70px;
}

nav a {
  text-decoration: none;
}

.navbar-brand h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-left: -0.5rem;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background-color: #222;
  color: #fff;
  border-left-color: #fff;
}

/* Button Styles */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.btn-outline {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

/* Mobile Toggle Button */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .nav-link {
    padding: 1rem 0;
    width: 100%;
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: #111;
    margin: 0;
    padding: 0;
  }

  .dropdown-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-left: none;
    border-bottom: 1px solid #333;
  }

  .navbar-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.navbar-toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .nav-link::after,
  .dropdown-icon,
  .dropdown-menu,
  .btn,
  .navbar-menu,
  .hamburger-line {
    transition: none;
  }

  .btn:hover,
  .dropdown:hover .dropdown-menu {
    transform: none;
  }
}

/* Main Content */
main {
  width: 100%;
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  margin-top: 70px;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* Mobile Video Background */
.hero-mobile-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  z-index: 0;
}

.hero-mobile-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

/* Image Trail Styles */
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.content__img {
  position: absolute;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  will-change: transform, opacity;
  transform-origin: center center;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
  padding: 0rem 3rem;
  position: relative;
}

.hero-award {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.award-icon {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: bold;
}

.award-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-contact-btn {
  background: #0ae448;
  background: linear-gradient(
    90deg,
    rgba(10, 228, 72, 1) 0%,
    rgba(173, 254, 133, 1) 100%
  );
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-contact-btn:hover {
  transform: translateY(-2px);
}

.contact-arrow {
  color: #000;
}

/* Confetti Styles for JS Animation */
.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 1rem;
  position: relative;
  padding: 0rem 3rem;
  z-index: 10;
}

.hero-left {
  display: flex;
  align-items: center;
  justify-content: start;
}

.hero-typography {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-word-large {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: #fff;
  line-height: 100%;
  mix-blend-mode: difference;
  position: relative;
  z-index: 5;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.hero-description {
  text-align: right;
  max-width: 400px;
}

.hero-description p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0.25rem 0;
}

/* Meet Instructor Section */
.meet-instructor {
  padding: 4rem 3rem;
  background-image: url(./Assets/green-gradient-abstract-background-empty-room-with-space-your-text-picture.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 2rem 0;
  min-height: 100vh;
  position: relative;
}

.meet-instructor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.instructor-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.instructor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.instructor-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.instructor-details h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.instructor-title {
  font-size: 1.1rem;
  color: #0ae448;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.instructor-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.instructor-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-label {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.25rem;
}

.instructor-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background-color: #222;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background-color: #333;
  border-color: #555;
}

.instructor-image {
  display: flex;
  justify-content: end;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: 0.; */
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 228, 72, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(10, 228, 72, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

/* Course Overview Section */
.course-overview {
  margin-bottom: 4rem;
  padding: 0;
  width: 100%;
}

/* Course Modules Layout */
.course-modules-layout {
  display: flex;
  height: 1030vh;
  background-image: url(./Assets/e867e216c68ac1aa47e68290e71bbaac.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

/* Module Sidebar */
.module-sidebar {
  width: 80px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100vh;
  position: relative;
  z-index: 100;
}

.module-sidebar.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.module-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-nav-item {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.module-nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.module-nav-item.active {
  background: #0ae448;
  border-color: #aaff82;
  transform: scale(1.1);
}

.module-nav-number {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.module-nav-item.active .module-nav-number {
  color: #fff;
}

/* Module Content Area */
.module-content-area {
  flex: 1;
  padding: 3rem;
  position: relative;
  height: 900vh;
}

.modules-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.module-content {
  display: block;
  width: 100%;
  min-height: 50vh;
  padding: 2rem 0;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

/* Responsive module content heights */
@media (max-width: 768px) {
  .module-content {
    height: 100vh; /* 80vh per module on mobile for better scroll detection */
  }
}

@media (min-width: 769px) {
  .module-content {
    min-height: 80vh; /* 100vh per module on desktop */
  }
}

.module-content.active {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.module-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.module-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.module-meta i {
  color: #fff;
  font-size: 2rem;
}

.module-description {
  margin-bottom: 3rem;
}

.module-description p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.module-description strong {
  color: #fff;
  font-weight: 600;
}

.module-lessons-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.lesson-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  border-radius: 8px;
}

.lesson-number {
  color: #0ae448;
  font-size: 1rem;
  font-weight: 600;
  min-width: 30px;
}

.lesson-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  flex: 1;
}

.lesson-duration {
  color: #999;
  font-size: 0.9rem;
  font-weight: 400;
}

.course-overview h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

.module-content-area .module-title {
  text-align: left;
}

/* Course Introduction Section */
.course-intro {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}

.intro-content {
  margin-bottom: 3rem;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.intro-text strong {
  color: #fff;
}

.course-stats {
  display: flex;
  justify-content: center;
  gap: 10rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 400;
  color: #0ae448;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.course-stats .stat-number {
  font-size: 7rem;
  font-weight: 800;
  background: -webkit-linear-gradient(#b5ffca, #2ff166, #003d11);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.course-stats .stat-label {
  font-size: 1.5rem;
}

.stat-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Hero Video Preview Section */
.hero-video-preview {
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: flex-end;
}

.hero-video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 280px;
}

.hero-video-player:hover {
  transform: scale(1.05);
}

.hero-video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hero-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-pricing-callout {
  background: linear-gradient(90deg, #aaff82 0%, #e9ffde 100%);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  margin-right: -2rem;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
  width: 200px;
}

.hero-pricing-callout::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #e9ffde;
}

.hero-price {
  font-size: 2rem;
  font-weight: 800;
  color: rgb(38, 137, 56);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-price-note {
  font-size: 0.85rem;
  color: rgb(38, 137, 56);
  font-weight: 400;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 80vh;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.modal-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enrollment Section */
.enrollment {
  text-align: center;
  padding: 3rem 0;
  background-color: #111;
  border-radius: 12px;
  border: 1px solid #333;
}

.enrollment h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.enrollment p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.enrollment button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enrollment button:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

.enrollment button:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Footer */
footer {
  background-color: #111;
  border-top: 1px solid #333;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  margin-bottom: 1rem;
  color: #ccc;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  outline: none;
  border: none;
}

footer nav a:hover {
  color: #fff;
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .navbar-container {
    padding: 0 4rem;
  }

  .hero-top {
    padding: 0rem 4rem;
  }

  .hero-content {
    padding: 0rem 4rem;
  }

  .meet-instructor {
    padding: 4rem 4rem;
    background-attachment: scroll;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .navbar-container {
    padding: 0 2.5rem;
  }

  .hero-top {
    padding: 0rem 2.5rem;
  }

  .hero-content {
    padding: 0rem 2.5rem;
  }

  .meet-instructor {
    padding: 3.5rem 2.5rem;
    background-attachment: scroll;
  }

  .content__img {
    width: 250px;
    height: 180px;
  }

  /* Hide mobile video on desktop */
  .hero-mobile-video {
    display: none;
  }
}

/* Tablet (768px to 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .navbar-container {
    padding: 0 2rem;
  }

  .hero-top {
    padding: 0rem 2rem;
  }

  .hero-content {
    padding: 0rem 2rem;
    gap: 3rem;
  }

  .meet-instructor {
    padding: 3rem 2rem;
    background-attachment: scroll;
    min-height: 80vh;
  }

  .instructor-content {
    gap: 3rem;
  }

  .content__img {
    width: 220px;
    height: 160px;
  }

  .hero-description p {
    font-size: 1.3rem;
  }

  .instructor-text h2 {
    font-size: 2.2rem;
  }

  .instructor-details h3 {
    font-size: 1.8rem;
  }

  /* Hide mobile video on tablet */
  .hero-mobile-video {
    display: none;
  }
}

/* Mobile Large (481px to 768px) */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

  .hero {
    min-height: 100vh;
    padding: 5rem 0;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }

  /* Show mobile video on mobile devices */
  .hero-mobile-video {
    display: block;
  }

  /* Mobile Image Trail Adjustments */
  .content__img {
    width: 180px;
    height: 130px;
  }

  .hero-top {
    position: relative;
    top: 0;
    margin-bottom: 1.5rem;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    padding: 0rem 1.5rem;
  }

  .hero-left {
    justify-content: center;
  }

  .hero-right {
    align-items: center;
  }

  .hero-typography {
    align-items: center;
  }

  .hero-word-large {
    font-size: clamp(4rem, 18vw, 8rem);
  }

  .hero-description {
    text-align: center;
    max-width: 100%;
  }

  .hero-description p {
    font-size: 1.2rem;
  }

  /* Meet Instructor Mobile Styles */
  .meet-instructor {
    padding: 2.5rem 1.5rem;
    background-attachment: scroll;
    min-height: 70vh;
  }

  .meet-instructor::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .instructor-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
  }

  .instructor-text h2 {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .instructor-details h3 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .instructor-description {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .instructor-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .instructor-skills {
    justify-content: center;
  }

  .image-wrapper {
    max-width: 300px;
  }

  .instructor-image {
    justify-content: center;
  }

  /* Course Intro Mobile Styles */
  .course-intro {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .course-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Hero Video Preview Mobile Styles */
  .hero-video-preview {
    margin-top: 1.5rem;
    align-items: center;
  }

  .hero-video-player {
    width: 250px;
  }

  .hero-pricing-callout {
    margin-right: 0;
    width: 180px;
  }

  .hero-pricing-callout::before {
    display: none;
  }

  .hero-price {
    font-size: 1.8rem;
  }
}

/* Mobile Small (320px to 480px) */
@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .hero-top {
    padding: 0rem 1rem;
  }

  .hero-content {
    padding: 0rem 1rem;
    gap: 1.5rem;
  }

  .meet-instructor {
    padding: 2rem 1rem;
    background-attachment: scroll;
    min-height: 60vh;
  }

  .meet-instructor::before {
    background: rgba(0, 0, 0, 0.7);
  }

  .content__img {
    width: 150px;
    height: 110px;
  }

  .hero-word-large {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-description p {
    font-size: 1rem;
  }

  .instructor-text h2 {
    font-size: 1.8rem;
  }

  .instructor-details h3 {
    font-size: 1.3rem;
  }

  .instructor-title {
    font-size: 1rem;
  }

  .instructor-description {
    font-size: 0.9rem;
  }

  .instructor-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat {
    align-items: center;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .skill-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .image-wrapper {
    max-width: 250px;
  }

  /* Course Intro Small Mobile Styles */
  .course-intro {
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .course-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Hero Video Preview Small Mobile Styles */
  .hero-video-player {
    width: 220px;
  }

  .hero-pricing-callout {
    width: 160px;
    padding: 0.8rem 1.2rem;
  }

  .hero-price {
    font-size: 1.6rem;
  }

  .hero-price-note {
    font-size: 0.8rem;
  }

  /* Accordion Small Mobile Styles */
  .accordion-header {
    padding: 0.8rem 1rem;
  }

  .module-title {
    font-size: 0.9rem;
  }

  .accordion-content.open {
    padding: 0 1rem 0.8rem 1rem;
  }

  .accordion-content p {
    font-size: 0.85rem;
  }

  .module-topics h4 {
    font-size: 0.85rem;
  }

  .module-topics li {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }

  /* Course Modules Layout Small Mobile Styles */
  .module-content-area {
    padding: 1.5rem 1rem;
    height: auto;
    display: block;
  }

  .module-title {
    font-size: 1.8rem;
  }

  .module-meta {
    font-size: 0.9rem;
  }

  .module-description p {
    font-size: 0.9rem;
  }

  .lesson-item {
    gap: 0.8rem;
    padding: 0.6rem 0;
  }

  .lesson-title {
    font-size: 0.85rem;
  }

  .lesson-duration {
    font-size: 0.75rem;
  }

  .module-content-area .module-title {
    font-size: 1.6rem;
  }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
  .navbar-container {
    padding: 0 0.5rem;
  }

  .hero-top {
    padding: 0rem 0.5rem;
  }

  .hero-content {
    padding: 0rem 0.5rem;
  }

  .meet-instructor {
    padding: 1.5rem 0.5rem;
    background-attachment: scroll;
    min-height: 50vh;
  }

  .meet-instructor::before {
    background: rgba(0, 0, 0, 0.8);
  }

  .content__img {
    width: 120px;
    height: 90px;
  }

  .hero-word-large {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .instructor-text h2 {
    font-size: 1.5rem;
  }

  .instructor-details h3 {
    font-size: 1.1rem;
  }

  .image-wrapper {
    max-width: 200px;
  }

  /* Accordion Extra Small Mobile Styles */
  .course-modules {
    padding: 0 0.5rem;
  }

  .accordion-header {
    padding: 0.7rem 0.8rem;
  }

  .module-title {
    font-size: 0.85rem;
  }

  .accordion-content.open {
    padding: 0 0.8rem 0.7rem 0.8rem;
  }

  .accordion-content p {
    font-size: 0.8rem;
  }

  .module-topics h4 {
    font-size: 0.8rem;
  }

  .module-topics li {
    font-size: 0.75rem;
    padding: 0.2rem 0;
  }
}

/* Common responsive styles for all sections */
@media (max-width: 768px) {
  footer nav {
    flex-direction: column;
    gap: 1rem;
  }

  /* Course Modules Layout Mobile Styles */
  .course-modules-layout {
    flex-direction: row;
    height: 1070vh;
    margin: 1rem 0;
  }

  .module-sidebar {
    width: 60px;
    flex-direction: column;
    padding: 1rem 0.5rem;
    justify-content: space-evenly;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .module-nav {
    flex-direction: column;
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .module-nav-item {
    width: 40px;
    height: 40px;
  }

  .module-nav-number {
    font-size: 0.8rem;
  }

  .module-content-area {
    padding: 2rem 1rem;
    height: 1070vh;
    display: block;
  }

  .module-title {
    font-size: 2rem;
  }

  .module-meta {
    font-size: 1rem;
  }

  .module-description p {
    font-size: 1rem;
  }

  .lesson-item {
    gap: 1rem;
    padding: 0.8rem 0;
  }

  .lesson-title {
    font-size: 0.9rem;
  }

  .lesson-duration {
    font-size: 0.8rem;
  }
}

/* Touch and Mobile Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .skill-tag:hover {
    background-color: #222;
    border-color: #333;
  }

  .image-wrapper:hover img {
    transform: none;
  }

  .image-wrapper:hover .image-overlay {
    opacity: 0;
  }

  .btn:hover {
    transform: none;
  }

  /* Optimize background for mobile */
  .meet-instructor {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .content__img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .enrollment button {
    transition: none;
  }

  .enrollment button:hover {
    transform: none;
  }

  .content__img {
    transition: none;
  }

  .image-wrapper img {
    transition: none;
  }

  .image-overlay {
    transition: none;
  }
}

/* CTA Banner Section */
.cta-banner {
  padding: 3rem 2rem;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.cta-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.cta-banner-content {
  background-image: url(./Assets/green-gradient-abstract-background-empty-room-with-space-your-text-picture.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 20px 40px rgba(26, 232, 47, 0.205);
  transition: all 0.3s ease;
}

.cta-banner-text {
  flex: 1;
  margin-right: 2rem;
}

.cta-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-banner-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-banner-button {
  background: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: 2rem;
  flex-shrink: 0;
}

.cta-banner-button:hover {
  transform: scale(1.1);
}

.cta-banner-button:active {
  transform: scale(0.95);
}

.cta-arrow {
  font-size: 1.5rem;
  color: #1a73e8;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-banner-button:hover .cta-arrow {
  transform: translateX(3px);
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: #111;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "Delight", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq-question:hover {
  color: #0ae448;
}

.faq-question:focus {
  outline: none;
}

.faq-question-text {
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0ae448;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #0a0a0a;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-answer-content {
  padding: 0;
}

.faq-answer-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
}

.faq-answer-content li:last-child {
  margin-bottom: 0;
}

.PaymentButton--rzpTheme.svelte-ekc7fv.svelte-ekc7fv::before {
  display: none !important;
}

.PaymentButton-securedBy.svelte-ekc7fv.svelte-ekc7fv {
  display: none !important;
}

.PaymentButton--rzpTheme.svelte-ekc7fv .PaymentButton-contents.svelte-ekc7fv {
  padding-left: 0px !important;
}

.PaymentButton-contents.svelte-ekc7fv.svelte-ekc7fv {
  padding: 0px !important;
}

svg.svelte-ekc7fv.svelte-ekc7fv {
  display: none !important;
}

.PaymentButton.svelte-ekc7fv.svelte-ekc7fv {
  min-width: initial !important;
  height: initial !important;
  padding: 12px 24px !important;
}

.PaymentButton--rzp-light-standard.svelte-ekc7fv.svelte-ekc7fv {
  background-color: #0ae448 !important;
  border-color: #0ae448 !important;
}

/* CTA Banner Responsive Styles */
@media (max-width: 768px) {
  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }

  .cta-banner-text {
    margin-right: 0;
  }

  .cta-banner-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .cta-banner-description {
    font-size: 1rem;
  }

  .cta-banner-button {
    margin-left: 0;
    width: 50px;
    height: 50px;
  }

  .cta-arrow {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 1.5rem 1rem;
  }

  .cta-banner-content {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .cta-banner-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 0.8rem;
  }

  .cta-banner-description {
    font-size: 0.95rem;
  }

  .cta-banner-button {
    width: 45px;
    height: 45px;
  }

  .cta-arrow {
    font-size: 1.2rem;
  }
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .faq {
    padding: 3rem 0;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .faq h2 {
    font-size: 2.5rem;
  }

  .faq-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .faq-question {
    padding: 1.25rem 0;
    font-size: 1rem;
  }

  .faq-question-text {
    margin-right: 0.75rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-answer.open {
    padding: 0 0 1.25rem 0;
  }

  .faq-answer-content p {
    font-size: 0.95rem;
  }

  .faq-answer-content ul {
    font-size: 0.95rem;
    padding-left: 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 2.5rem 0;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1rem 0;
    font-size: 0.95rem;
  }

  .faq-question-text {
    margin-right: 0.5rem;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .faq-answer.open {
    padding: 0 0 1rem 0;
  }

  .faq-answer-content p {
    font-size: 0.9rem;
  }

  .faq-answer-content ul {
    font-size: 0.9rem;
    padding-left: 1rem;
  }
}

/* FAQ Accessibility and Animation Improvements */
@media (prefers-reduced-motion: reduce) {
  .faq-question,
  .faq-icon,
  .faq-answer {
    transition: none;
  }
}

/* FAQ Focus styles for better accessibility */
.faq-question:focus-visible {
  outline: 2px solid #0ae448;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer {
    display: none;
  }

  main {
    padding: 0;
  }
}

a:focus,
a:active {
  outline: none !important;
  border: none !important;
}
