/* Hero Section - Two Column Layout */
.hero-section {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #1a1d23 0%, #2d3139 100%);
  padding: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
  gap: var(--space-12);
  align-items: center;
  min-height: 600px;
}

/* Left Column - Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* H1 Title - Large and Bold */
.hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem; /* 56px */
  font-weight: var(--font-bold);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
}

/* Subtitle/Description */
.hero-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 540px;
}

/* CTA Section */
.hero-cta-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.cta-link {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}

/* Red CTA Button */
.btn-cta {
  background-color: #dc2626; /* Red color from reference */
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Social Proof Section */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}


/* Rating Info */
.rating-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star-icon {
  width: 1.125rem;
  height: 1.125rem;
  filter: brightness(0) saturate(100%) invert(73%) sepia(89%) saturate(1780%) hue-rotate(359deg) brightness(102%) contrast(102%);
}

.rating-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.9);
}

/* Right Column - Hero Image */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-card {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-base);
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: var(--space-16) var(--space-6);
    gap: var(--space-8);
    min-height: 500px;
  }

  .hero-title {
    font-size: 3rem; /* 48px */
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: var(--space-12) var(--space-5);
    gap: var(--space-10);
    min-height: auto;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero-title {
    font-size: 2.5rem; /* 40px */
  }

  .hero-subtitle {
    font-size: var(--text-base);
    max-width: 100%;
  }

  .btn-cta {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
  }

  .avatar {
    width: 2rem;
    height: 2rem;
  }

  .hero-image-card {
    transform: none;
    max-width: 100%;
  }

  .hero-image-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: var(--space-10) var(--space-4);
    gap: var(--space-8);
  }

  .hero-content-inner {
    gap: var(--space-5);
  }

  .hero-title {
    font-size: 2rem; /* 32px */
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: var(--text-sm);
  }

  .btn-cta {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-5);
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .avatar {
    width: 1.75rem;
    height: 1.75rem;
    margin-left: -6px;
  }

  .avatar:first-child {
    margin-left: 0;
  }

  .avatar-count {
    font-size: var(--text-xs);
  }

  .rating-text {
    font-size: var(--text-xs);
  }

  .star-icon {
    width: 1rem;
    height: 1rem;
  }
}

/* Focus States for Accessibility */
.btn-cta:focus-visible {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}

.cta-link:focus-visible {
  outline: none;
}

.cta-link:focus-visible .btn-cta {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}/* Products Section - Full Width Background */
.products-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--space-20) 0 var(--space-24) 0;
  background-color: #2d3748;
}

/* Container for grid - centered with max-width */
.products-section .section-title,
.products-section .products-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* Ensure cards in this section override global styles */
.products-section .product-card {
  background-color: #1a202c !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
  height: auto !important;
  min-height: auto !important;
}

.section-title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl); /* 36px - same as ACADEMY NAME */
  font-weight: var(--font-bold);
  color: #ffffff;
  margin: 0 0 var(--space-10) 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.products-section .section-title {
  margin-top: var(--space-8);
  margin-bottom: var(--space-12);
}

/* Products Grid - 3 Columns */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  width: 100%;
  align-items: stretch;
}

/* Product Card */
.product-card {
  background-color: #1a202c !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
  height: auto;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper with Badge */
.product-image-wrapper {
  position: relative;
  width: 100%;
}

.product-image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-dark-200);
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}


/* Product Content */
.product-content {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  gap: var(--space-4);
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: #ffffff !important;
  margin: 0;
  line-height: var(--leading-tight);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: #9ca3af !important;
  line-height: var(--leading-relaxed);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product Meta Row */
.product-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.meta-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af !important;
  flex-shrink: 0;
}

.meta-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: #d1d5db !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Learn More Button - Full Width Red CTA */
.learn-more-btn {
  width: 100%;
  padding: 1rem;
  background-color: #ef4444 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  display: block !important;
  flex-shrink: 0;
  min-height: 48px;
  line-height: 1.2;
}

.products-section .learn-more-btn {
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.learn-more-btn:hover {
  background-color: #dc2626 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.4);
}

.learn-more-btn:active {
  transform: translateY(0);
}

.learn-more-btn:focus-visible {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .products-section {
    padding: var(--space-12) var(--space-5);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .product-title {
    font-size: var(--text-lg);
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: var(--space-10) var(--space-4);
    background-color: var(--color-dark-800);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .section-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
  }

  .product-image-container {
    height: 220px;
  }

  .product-content {
    padding: var(--space-5);
  }

  .product-title {
    font-size: var(--text-lg);
  }

  .product-description {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: var(--space-8) var(--space-4);
  }

  .section-title {
    font-size: var(--text-lg);
  }

  .product-image-container {
    height: 180px;
  }

  .product-content {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  .product-title {
    font-size: var(--text-base);
  }

  .product-description {
    font-size: var(--text-xs);
    -webkit-line-clamp: 2;
  }

  .meta-text {
    font-size: 0.625rem;
  }

  .learn-more-btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }
}/* Testimonials Section - Dark theme with 3x3 grid */
.testimonials-section {
  background-color: #0f1114;
  padding: var(--space-20) 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header Section */
.testimonials-header {
  margin-bottom: var(--space-16);
  text-align: center;
}

.testimonials-section .section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* Testimonials Grid - 3x3 */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #1a1d21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 200px;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Header with Avatar */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: #ffffff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
  min-width: 0;
}

.author-name {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: #ffffff;
  line-height: 1.3;
}

.rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star-icon {
  width: 14px;
  height: 14px;
  filter: brightness(1.2);
}

/* Testimonial Text */
.testimonial-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* See More Button Container */
.see-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--space-8);
  position: relative;
}

/* Fade effect above button */
.see-more-container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #0f1114);
  pointer-events: none;
}

/* See More Button */
.see-more-btn {
  background-color: #ffffff;
  color: #0f1114;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  padding: var(--space-3) var(--space-8);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.see-more-btn:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.see-more-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonials-container {
    padding: 0 var(--space-5);
  }
  
  .testimonials-grid {
    gap: var(--space-4);
  }
}

@media (max-width: 1024px) {
  .testimonials-section .section-title {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-header {
    margin-bottom: var(--space-10);
  }
  
  .testimonials-section .section-title {
    font-size: 1.75rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .testimonial-card {
    min-height: auto;
  }
  
  .see-more-container {
    padding-top: var(--space-6);
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: var(--space-12) 0;
  }
  
  .testimonials-container {
    padding: 0 var(--space-4);
  }
  
  .testimonials-section .section-title {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: var(--space-4);
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }
  
  .author-name {
    font-size: var(--text-sm);
  }
  
  .testimonial-text {
    font-size: var(--text-xs);
  }
  
  .see-more-btn {
    padding: var(--space-2) var(--space-6);
    font-size: var(--text-sm);
  }
}/* About Section - Full Width Background */
.about-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--space-20) 0;
  background-color: #2d3748;
}

/* Container - Rounded Dark Surface */
.about-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-12);
  background-color: #1a202c;
  border-radius: var(--radius-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

/* Left - Portrait Image with Rounded Corners */
.about-image-wrapper {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: #1a202c;
}

.about-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Right - Content Section */
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  color: #ffffff;
}

/* About / Academy Name Title */
.about-title {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Heading */
.about-heading {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: #ffffff;
  margin: 0;
  line-height: var(--leading-tight);
}

/* Description */
.about-description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 600px;
}

/* Social Icons Row */
.about-social-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.about-social-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.about-social-icons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

.about-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.about-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Button (if needed) */
.about-btn-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #ffffff;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-btn-text:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section-container {
    padding: var(--space-10);
    gap: var(--space-10);
  }

  .about-image-wrapper {
    width: 260px;
    height: 340px;
  }

  .about-heading {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: var(--space-12) var(--space-4);
  }

  .about-section-container {
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-8);
    border-radius: var(--radius-2xl);
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 300px;
    height: 380px;
  }

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

  .about-heading {
    font-size: var(--text-2xl);
  }

  .about-description {
    font-size: var(--text-sm);
    max-width: 100%;
  }

  .about-social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: var(--space-10) var(--space-3);
  }

  .about-section-container {
    padding: var(--space-6);
    gap: var(--space-6);
  }

  .about-image-wrapper {
    height: 320px;
  }

  .about-title {
    font-size: 0.625rem;
  }

  .about-heading {
    font-size: var(--text-xl);
  }

  .about-description {
    font-size: var(--text-xs);
  }

  .about-social-icon {
    width: 36px;
    height: 36px;
  }

  .about-social-icon svg {
    width: 18px;
    height: 18px;
  }
}/* Base shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Enhanced shimmer animation for better visibility */
@keyframes shimmer-enhanced {
  0% {
    background-position: -200px 0;
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: calc(200px + 100%) 0;
    opacity: 0.8;
  }
}

/* Base shimmer class - Light theme */
.shimmer {
  background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 50%, #e5e7eb 75%);
  background-size: 200px 100%;
  animation: shimmer-enhanced 1.8s infinite;
  display: block;
}

/* Shimmer variants */
.shimmer--text {
  height: 1em;
  border-radius: 4px;
  margin: 0.5em 0;
}

.shimmer--text.shimmer--title {
  height: 1.5em;
  width: 60%;
  margin-bottom: 1em;
}

.shimmer--text.shimmer--subtitle {
  height: 1.2em;
  width: 40%;
  margin-bottom: 0.8em;
}

.shimmer--text.shimmer--paragraph {
  height: 1em;
  width: 100%;
  margin-bottom: 0.5em;
}

.shimmer--text.shimmer--paragraph:nth-child(odd) {
  width: 90%;
}

.shimmer--text.shimmer--paragraph:nth-child(even) {
  width: 75%;
}

.shimmer--card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.shimmer--image {
  border-radius: 8px;
  background: #f0f0f0;
}

.shimmer--image.shimmer--rounded {
  border-radius: 50%;
}

.shimmer--button {
  height: 40px;
  border-radius: 6px;
  width: 120px;
}

.shimmer--button.shimmer--large {
  height: 48px;
  width: 150px;
}

.shimmer--button.shimmer--small {
  height: 32px;
  width: 80px;
}

.shimmer--avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.shimmer--avatar.shimmer--large {
  width: 60px;
  height: 60px;
}

.shimmer--avatar.shimmer--small {
  width: 24px;
  height: 24px;
}

.shimmer--rounded {
  border-radius: 8px;
}

/* Hero section shimmer */
.shimmer--hero {
  background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  height: 400px;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Product card shimmer */
.shimmer--product-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.shimmer--product-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.shimmer--product-title {
  height: 1.5em;
  width: 80%;
  margin-bottom: 0.5rem;
}

.shimmer--product-price {
  height: 1.2em;
  width: 40%;
  margin-bottom: 1rem;
}

.shimmer--product-button {
  height: 36px;
  width: 100%;
  border-radius: 6px;
}

/* Testimonial shimmer */
.shimmer--testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.shimmer--testimonial-content {
  height: 1em;
  width: 100%;
  margin-bottom: 0.5rem;
}

.shimmer--testimonial-content:nth-child(odd) {
  width: 95%;
}

.shimmer--testimonial-content:nth-child(even) {
  width: 85%;
}

.shimmer--testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.shimmer--testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.shimmer--testimonial-name {
  height: 1em;
  width: 60%;
}

/* About section shimmer */
.shimmer--about {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.shimmer--about-image {
  width: 300px;
  height: 200px;
  border-radius: 8px;
  flex-shrink: 0;
}

.shimmer--about-content {
  flex: 1;
}

.shimmer--about-title {
  height: 2em;
  width: 70%;
  margin-bottom: 1rem;
}

.shimmer--about-text {
  height: 1em;
  width: 100%;
  margin-bottom: 0.5rem;
}

.shimmer--about-text:nth-child(odd) {
  width: 95%;
}

.shimmer--about-text:nth-child(even) {
  width: 80%;
}

/* Responsive design */
@media (max-width: 768px) {
  .shimmer--hero {
    height: 300px;
  }
  
  .shimmer--about {
    flex-direction: column;
    gap: 1rem;
  }
  
  .shimmer--about-image {
    width: 100%;
    height: 150px;
  }
  
  .shimmer--product-image {
    height: 150px;
  }
}

/* Layout styles for shimmer components */
.hero-shimmer {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.hero-shimmer__content {
  flex: 1;
}

.hero-shimmer__image {
  flex: 1;
}

.hero-shimmer__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.products-shimmer__header {
  text-align: center;
  margin-bottom: 2rem;
}

.products-shimmer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.about-shimmer__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonials-shimmer__header {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-shimmer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Learning Library Shimmer Styles */
.learning-library-shimmer {
  padding: 2rem 0;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.learning-library-shimmer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.learning-library-shimmer__title {
  flex-shrink: 0;
}

.learning-library-shimmer__filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.learning-library-shimmer__search {
  flex: 1;
  min-width: 250px;
}

.learning-library-shimmer__dropdowns {
  display: flex;
  gap: 0.75rem;
}

.learning-library-shimmer__categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.learning-library-shimmer__category {
  margin-bottom: 2rem;
}

.learning-library-shimmer__category-header {
  margin-bottom: 1.5rem;
}

.learning-library-shimmer__courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.learning-library-shimmer__course-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.learning-library-shimmer__course-content {
  padding: 1rem 0;
}

.learning-library-shimmer__course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75rem 0;
}

/* Search Bar Shimmer */
.search-bar-shimmer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-bar-shimmer__title {
  flex-shrink: 0;
}

.search-bar-shimmer__filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-bar-shimmer__search {
  flex: 1;
  min-width: 250px;
}

.search-bar-shimmer__dropdowns {
  display: flex;
  gap: 0.75rem;
}

/* Course Card Shimmer */
.course-card-shimmer {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.course-card-shimmer__content {
  padding: 1rem 0;
}

.course-card-shimmer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75rem 0;
}

/* Shimmer variants for learning library */
.shimmer--search-input {
  height: 40px;
  border-radius: 8px;
  width: 100%;
}

.shimmer--dropdown {
  height: 40px;
  border-radius: 8px;
  width: 100%;
}

.shimmer--category-title {
  height: 28px;
  width: 200px;
  margin-bottom: 1rem;
}

.shimmer--course-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.shimmer--course-title {
  height: 1.5em;
  width: 90%;
  margin-bottom: 0.5rem;
}

.shimmer--course-instructor {
  height: 1.2em;
  width: 70%;
  margin-bottom: 0.5rem;
}

.shimmer--course-price {
  height: 1.3em;
  width: 50%;
  margin-bottom: 0.75rem;
}

.shimmer--course-duration {
  height: 1em;
  width: 80px;
}

.shimmer--course-rating {
  height: 1em;
  width: 60px;
}

.shimmer--course-button {
  height: 36px;
  width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Responsive design for learning library */
@media (max-width: 768px) {
  .learning-library-shimmer__header,
  .search-bar-shimmer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .learning-library-shimmer__filters,
  .search-bar-shimmer__filters {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .learning-library-shimmer__search,
  .search-bar-shimmer__search {
    min-width: unset;
  }
  
  .learning-library-shimmer__dropdowns,
  .search-bar-shimmer__dropdowns {
    flex-direction: column;
  }
  
  .learning-library-shimmer__courses-grid {
    grid-template-columns: 1fr;
  }
  
  .shimmer--course-image {
    height: 150px;
  }
}

/* About Page Shimmer Styles */
.about-page-shimmer {
  min-height: 100vh;
  width: 100%;
  background: #fff;
  padding: 0 0 2.5vw 0;
}

/* Hero Section Shimmer */
.about-hero-shimmer {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.15vw;
  width: 100%;
  padding-left: 3.12vw;
  margin-bottom: 4rem;
  min-height: 400px;
}

.about-hero-shimmer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.94vw;
  min-width: 0;
  justify-content: center;
}

.about-hero-shimmer__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16.67vw;
  max-width: 43.39vw;
}

.about-hero-shimmer__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Mission Section Shimmer */
.about-mission-shimmer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  margin: 2.24vw 0 0;
  padding: 0 3.13vw;
  gap: 1.25vw;
  min-height: 300px;
}

.about-mission-shimmer__left {
  flex: 1;
}

.about-mission-shimmer__right {
  flex: 1;
}

/* Vision Section Shimmer */
.about-vision-shimmer {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem 0;
  min-height: 300px;
}

.about-vision-shimmer__left {
  flex: 1;
}

.about-vision-shimmer__right {
  flex: 1;
}

/* Instructors Section Shimmer */
.about-instructors-shimmer {
  margin-bottom: 4rem;
  padding: 3rem 0;
  min-height: 400px;
}

.about-instructors-shimmer__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-instructors-shimmer__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-instructor-shimmer__card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-instructor-shimmer__info {
  margin-top: 1rem;
}

/* Achievement Points Section Shimmer */
.about-achievements-shimmer {
  margin-bottom: 4rem;
  padding: 3rem 0;
  min-height: 300px;
}

.about-achievements-shimmer__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-achievements-shimmer__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-achievement-shimmer__card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Shimmer variants for about page */
.shimmer--about-hero-title {
  height: 60px;
  margin-bottom: 2rem;
}

.shimmer--about-hero-description {
  height: 20px;
  margin-bottom: 1rem;
}

.shimmer--about-hero-description:nth-child(odd) {
  width: 95%;
}

.shimmer--about-hero-description:nth-child(even) {
  width: 85%;
}

.shimmer--about-hero-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.shimmer--about-section-title {
  height: 36px;
  margin-bottom: 1rem;
}

.shimmer--about-section-description {
  height: 1.2em;
  margin-bottom: 0.5rem;
}

.shimmer--about-section-description:nth-child(odd) {
  width: 95%;
}

.shimmer--about-section-description:nth-child(even) {
  width: 80%;
}

.shimmer--about-section-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

.shimmer--about-button {
  height: 50px;
  border-radius: 8px;
}

.shimmer--about-instructor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
}

.shimmer--about-instructor-name {
  height: 1.5em;
  margin-bottom: 0.5rem;
}

.shimmer--about-instructor-bio {
  height: 1em;
  margin-bottom: 0.25rem;
}

.shimmer--about-instructor-bio:nth-child(odd) {
  width: 90%;
}

.shimmer--about-instructor-bio:nth-child(even) {
  width: 75%;
}

.shimmer--about-achievement-number {
  height: 48px;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}

.shimmer--about-achievement-description {
  height: 1em;
  margin-bottom: 0.25rem;
}

.shimmer--about-achievement-description:nth-child(odd) {
  width: 90%;
}

.shimmer--about-achievement-description:nth-child(even) {
  width: 80%;
}

/* Responsive design for about page shimmer */
@media (max-width: 768px) {
  .about-hero-shimmer,
  .about-mission-shimmer,
  .about-vision-shimmer {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-hero-shimmer__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-instructors-shimmer__cards {
    grid-template-columns: 1fr;
  }
  
  .about-achievements-shimmer__stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .shimmer--about-hero-image,
  .shimmer--about-section-image {
    height: 250px;
  }
}

/* Contact Page Shimmer Styles */
.contact-description-shimmer {
  margin: 1rem 0;
}

.contact-form-shimmer {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-fields-shimmer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row-shimmer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.shimmer--contact-heading {
  margin-bottom: 1rem;
  border-radius: 4px;
}

.shimmer--contact-description {
  margin-bottom: 0.5rem;
  height: 16px;
  border-radius: 4px;
}

.shimmer--contact-description:last-child {
  width: 60%;
}

.shimmer--contact-form-title {
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.shimmer--contact-form-field {
  border-radius: 6px;
  height: 48px;
}

.shimmer--contact-form-textarea {
  border-radius: 6px;
  height: 120px;
}

.shimmer--contact-form-button {
  border-radius: 6px;
  height: 48px;
  margin-top: 1rem;
}

/* Contact Page Shimmer Responsive */
@media (max-width: 768px) {
  .contact-form-row-shimmer {
    grid-template-columns: 1fr;
  }
  
  .contact-form-shimmer {
    padding: 1.5rem;
  }
  
  .shimmer--contact-heading {
    height: 40px;
  }
  
  .shimmer--contact-form-title {
    height: 28px;
  }
}

/* Subscription Page Shimmer Styles */
.plan-description-shimmer {
  margin: 1rem 0;
}

.shimmer--subscription-tab {
  border-radius: 4px;
  margin-right: 1rem;
}

.shimmer--search-input {
  border-radius: 12px;
  height: 50px;
}

.shimmer--filter-dropdown {
  border-radius: 6px;
  height: 50px;
}

.shimmer--course-image {
  border-radius: 12px;
  height: 200px;
}

.shimmer--course-tag {
  border-radius: 24px;
  height: 24px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.shimmer--course-title {
  border-radius: 4px;
  height: 20px;
  margin-bottom: 0.5rem;
}

.shimmer--course-title:last-child {
  width: 70%;
}

.shimmer--course-price {
  border-radius: 4px;
  height: 20px;
}

.shimmer--view-course-btn {
  border-radius: 12px;
  height: 50px;
  margin-top: 1rem;
}

.shimmer--plan-title {
  border-radius: 4px;
  height: 32px;
  margin-bottom: 1rem;
}

.shimmer--plan-price {
  border-radius: 4px;
  height: 40px;
}

.shimmer--courses-included {
  border-radius: 4px;
  height: 20px;
  width: 140px;
}

.shimmer--category-tag {
  border-radius: 24px;
  height: 24px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.shimmer--plan-description {
  border-radius: 4px;
  height: 16px;
  margin-bottom: 0.5rem;
}

.shimmer--plan-description:last-child {
  width: 60%;
}

.shimmer--buy-plan-btn {
  border-radius: 12px;
  height: 50px;
  margin-top: auto;
}

.courses-loading-shimmer {
  margin-top: 2rem;
}

/* Subscription Page Shimmer Responsive */
@media (max-width: 1200px) {
  .subscription-body {
    flex-direction: column;
  }
  
  .subscription-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .subscription-tabs-row,
  .subscription-filters-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .shimmer--subscription-tab {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .shimmer--search-input {
    height: 40px;
  }
  
  .shimmer--filter-dropdown {
    height: 40px;
  }
  
  .shimmer--course-image {
    height: 150px;
  }
  
  .shimmer--plan-title {
    height: 28px;
  }
  
  .shimmer--plan-price {
    height: 32px;
  }
}

/* Force light theme for all shimmers - override dark mode */
.shimmer {
  background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 50%, #e5e7eb 75%) !important;
  background-size: 200px 100% !important;
}

.shimmer--card,
.shimmer--product-card,
.shimmer--testimonial,
.learning-library-shimmer__course-card,
.course-card-shimmer,
.about-instructor-shimmer__card,
.about-achievement-shimmer__card {
  background: #ffffff !important;
}

/* Override any dark mode styles */
@media (prefers-color-scheme: dark) {
  .shimmer {
    background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 50%, #e5e7eb 75%) !important;
    background-size: 200px 100% !important;
  }
  
  .shimmer--card,
  .shimmer--product-card,
  .shimmer--testimonial,
  .learning-library-shimmer__course-card,
  .course-card-shimmer,
  .about-instructor-shimmer__card,
  .about-achievement-shimmer__card {
    background: #ffffff !important;
  }
}

/* Course Content Shimmer Styles */
.course-content-shimmer {
  padding: 2rem 0;
}

.course-content-section-shimmer {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

.course-content-section-content-shimmer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.course-content-session-shimmer {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.course-content-whats-included-shimmer {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.course-content-whats-included-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Shimmer variants for course content */
.shimmer--course-content-title {
  height: 32px;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.shimmer--course-content-icon {
  border-radius: 4px;
}

.shimmer--course-content-section-title {
  height: 20px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.shimmer--course-content-lesson-count {
  height: 16px;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.shimmer--course-content-expand-icon {
  border-radius: 50%;
}

.shimmer--course-content-description {
  height: 16px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.shimmer--course-content-whats-included-title {
  height: 18px;
  margin-bottom: 0.75rem;
  border-radius: 4px;
}

.shimmer--course-content-whats-included-item {
  height: 16px;
  border-radius: 12px;
}

.shimmer--course-content-session-title {
  height: 18px;
  border-radius: 4px;
}

.shimmer--course-content-preview-button {
  height: 32px;
  border-radius: 6px;
  margin-right: 0.5rem;
}

.shimmer--course-content-session-length {
  height: 14px;
  border-radius: 4px;
}

/* Course Content Shimmer Responsive */
@media (max-width: 768px) {
  .course-content-shimmer {
    padding: 1rem 0;
  }
  
  .course-content-section-content-shimmer {
    padding: 1rem;
  }
  
  .course-content-whats-included-shimmer {
    padding: 0.75rem;
  }
  
  .course-content-session-shimmer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .course-content-session-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Responsive Design for About Page Shimmer */
@media (max-width: 1200px) {
  .about-hero-shimmer {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .about-hero-shimmer__left, 
  .about-hero-shimmer__right {
    max-width: 100%;
    min-width: 0;
  }
  
  .about-mission-shimmer {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .about-page-shimmer {
    gap: 24px;
    padding: 0 0 24px 0;
  }
  
  .about-hero-shimmer {
    gap: 16px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .about-mission-shimmer {
    padding: 0 10px;
    gap: 10px;
  }
  
  .about-hero-shimmer__left,
  .about-mission-shimmer__left,
  .about-vision-shimmer__left,
  .about-mission-shimmer__right,
  .about-vision-shimmer__right {
    flex: none;
  }
  
  .about-instructors-shimmer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-achievements-shimmer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shimmer--about-hero-image,
  .shimmer--about-section-image {
    height: 250px;
  }
  
  .shimmer--about-hero-title {
    height: 40px;
  }
  
  .shimmer--about-hero-description {
    height: 16px;
  }
}

@media (max-width: 480px) {
  .about-hero-shimmer {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
.preview-page {
  background-color: #2d3748;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

.home-page-preview .container{
  max-width: unset;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.home-page-preview{
  margin: 0 !important;
  width: 100%;
  padding: 0 !important;
}

/* Remove any wrapper div spacing */
.home-page-preview .container > div {
  margin: 0 !important;
  padding: 0 !important;
}

.container {
  width: 100%;
  max-width: 93.75vw;
  padding: 0 1rem;
  margin: 0 auto;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

.preview-page .container > * {
  margin-top: 0;
}

.preview-page .container > :first-child {
  margin-top: 0;
} /* Contact Page Main Layout */
.contact-page-wrapper {
  height: 100vh;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.contact-main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-content {
  display: flex;
  gap: 0;
  background: transparent;
  flex: 1;
  min-height: 0;
  max-height: calc(100vh - 80px);
}

/* Left Section - Form */
.contact-form-section {
  flex: 1;
  background: #1a1a1a;
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  max-height: 100%;
}

.contact-form-inner {
  max-width: 500px;
  width: 100%;
  min-height: 600px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-emoji {
  font-size: 36px;
  display: inline-block;
  transform: rotate(15deg);
}

.contact-subtitle {
  font-size: 15px;
  color: #999999;
  margin: 0 0 24px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Dynamic form from API */
.contact-form-dynamic {
  width: 100%;
  min-height: 700px;
  height: auto;
  display: block !important;
  position: relative;
  overflow: visible;
  background: transparent;
}

/* Force visibility of any hidden wrappers from API - MOST AGGRESSIVE */
.contact-form-dynamic,
.contact-form-dynamic *,
.contact-form-dynamic div,
.contact-form-dynamic .cup-form-wrapper-hidden,
.contact-form-dynamic [style*="display: none"],
.contact-form-dynamic [style*="display:none"],
.contact-form-dynamic [hidden],
div[class*="cup-form"],
div[class*="tally"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  height: auto !important;
  clip-path: none !important;
  transform: none !important;
}
/* Specifically target any Tally containers */
.contact-form-dynamic iframe[data-tally-src],
.contact-form-dynamic iframe[src*="tally"],
#tally-iframe,
iframe[title*="Get in Touch"],
iframe[title*="Contact"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
 
/* Style for embedded iframes (Tally, Typeform, etc.) */
.contact-form-dynamic iframe,
.contact-form-dynamic iframe[loading],
.contact-form-dynamic iframe[data-tally-src] {
  width: 100% !important;
  min-height: 700px !important;
  height: 700px !important;
  border: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 999 !important;
  background: transparent !important;
  pointer-events: auto !important;
}

/* Style the dynamically loaded form elements to match our design */
.contact-form-dynamic form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-dynamic input[type="text"],
.contact-form-dynamic input[type="email"],
.contact-form-dynamic input[type="tel"],
.contact-form-dynamic input[type="url"],
.contact-form-dynamic input[type="number"],
.contact-form-dynamic textarea,
.contact-form-dynamic select {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-form-dynamic input::-moz-placeholder, .contact-form-dynamic textarea::-moz-placeholder {
  color: #666666;
}

.contact-form-dynamic input::placeholder,
.contact-form-dynamic textarea::placeholder {
  color: #666666;
}

.contact-form-dynamic input:focus,
.contact-form-dynamic textarea:focus,
.contact-form-dynamic select:focus {
  border-color: #555555;
  background: #333333;
}

.contact-form-dynamic textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 120px;
}

.contact-form-dynamic label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-form-dynamic button[type="submit"],
.contact-form-dynamic input[type="submit"],
.contact-form-dynamic button.submit-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  outline: none;
}

.contact-form-dynamic button[type="submit"]:hover,
.contact-form-dynamic input[type="submit"]:hover,
.contact-form-dynamic button.submit-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.contact-form-dynamic button[type="submit"]:active,
.contact-form-dynamic input[type="submit"]:active,
.contact-form-dynamic button.submit-btn:active {
  transform: translateY(0);
}

/* Fallback message styling */
.contact-form-fallback {
  width: 100%;
}

.contact-form-fallback p {
  color: #999999;
  margin: 0;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Default fallback form styles */
.contact-form-default {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-form-default .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-default .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-form-default .form-input,
.contact-form-default .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-form-default .form-input::-moz-placeholder, .contact-form-default .form-textarea::-moz-placeholder {
  color: #666666;
}

.contact-form-default .form-input::placeholder,
.contact-form-default .form-textarea::placeholder {
  color: #666666;
}

.contact-form-default .form-input:focus,
.contact-form-default .form-textarea:focus {
  border-color: #555555;
  background: #333333;
}

.contact-form-default .form-textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 120px;
}

.contact-form-default .contact-submit-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  outline: none;
}

.contact-form-default .contact-submit-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.contact-form-default .contact-submit-btn:active {
  transform: translateY(0);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::-moz-placeholder {
  color: #666666;
}

.form-input::placeholder {
  color: #666666;
}

.form-input:focus {
  border-color: #555555;
  background: #333333;
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  resize: vertical;
  min-height: 80px;
  max-height: 120px;
  transition: all 0.3s ease;
  outline: none;
}

.form-textarea::-moz-placeholder {
  color: #666666;
}

.form-textarea::placeholder {
  color: #666666;
}

.form-textarea:focus {
  border-color: #555555;
  background: #333333;
}

/* Submit Button */
.contact-submit-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  outline: none;
}

.contact-submit-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Right Section - Image */
.contact-image-section {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0;
  min-height: 0;
  max-height: 100%;
}

.contact-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  max-height: 100%;
}

.contact-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Hidden wrapper for original form functionality */
.cup-form-wrapper-hidden {
  display: none !important;
}

/* Footer Section */
.contact-footer {
  background: #2a2a2a;
  padding: 60px 80px;
  margin-top: 0;
  border-top: 1px solid #3a3a3a;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-logo-academy {
  color: #ff4444;
}

.footer-description {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-right {
  display: flex;
  gap: 120px;
}

.footer-column {
  min-width: 120px;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #3a3a3a;
  margin-top: 40px;
  font-size: 14px;
  color: #666666;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-main {
    padding: 25px 40px;
  }
  
  .contact-form-section {
    padding: 25px 25px 25px 0;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-emoji {
    font-size: 32px;
  }
  
  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .contact-form {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .contact-page-wrapper {
    height: 100vh;
    overflow-y: auto;
  }
  
  .contact-content {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }
  
  .contact-form-section {
    padding: 25px 20px;
    flex: none;
    max-height: none;
  }
  
  .contact-image-section {
    height: 250px;
    padding: 0 20px 25px 20px;
    flex: none;
    max-height: none;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-emoji {
    font-size: 28px;
  }
  
  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .contact-form {
    gap: 12px;
  }
  
  .form-textarea {
    min-height: 70px;
    max-height: 100px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-main {
    padding: 15px;
  }
  
  .contact-form-section {
    padding: 20px 15px;
  }
  
  .contact-image-section {
    height: 200px;
    padding: 0 15px 20px 15px;
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .contact-emoji {
    font-size: 24px;
  }
  
  .contact-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .contact-form {
    gap: 12px;
  }
  
  .form-textarea {
    min-height: 60px;
    max-height: 80px;
  }
  
  .contact-submit-btn {
    width: 100%;
  }
  
  /* Dynamic form responsive styles */
  .contact-form-dynamic button[type="submit"],
  .contact-form-dynamic input[type="submit"],
  .contact-form-dynamic button.submit-btn {
    width: 100%;
  }
  
  .contact-form-dynamic textarea {
    min-height: 60px;
    max-height: 80px;
  }
  
  /* Fallback form responsive styles */
  .contact-form-default .contact-submit-btn {
    width: 100%;
  }
  
  .contact-form-default .form-textarea {
    min-height: 60px;
    max-height: 80px;
  }
}/* Common font family for all about section elements */
.about-main-heading, .about-main-description, .about-main-section .btn-primary, .about-main-section .btn-secondary,
.about-stats-heading, .about-stats-subheading, .about-stat-number, .about-stat-description, .about-mission-heading,
.about-mission-subheading, .about-vision-subheading, .about-vision-heading, .team-heading, .team-subheading, .team-card-name{
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
}
 
/* Override global button styles for About Us page */
.aboutus-wrapper .btn-primary {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}
 
.aboutus-wrapper .btn-secondary {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
 
/* Wrapper for About Us page */
.aboutus-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #000000;
  padding: 0;
}
 
/* Main About Section / Hero */
.about-main-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #000000;
}
 
.about-main-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}
 
.about-main-heading {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
 
.about-main-description {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 32px 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
 
.about-main-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
 
.about-main-section .btn-primary {
  background-color: #ffffff !important;
  color: #000000 !important;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 1.5 !important;
  padding: 14px 32px !important;
  height: unset !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: capitalize;
  letter-spacing: 0;
}
 
.about-main-section .btn-primary:hover {
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
 
.about-main-section .btn-secondary {
  font-weight: 600;
  color: #ffffff !important;
  background-color: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  padding: 12px 32px !important;
  height: unset !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 0;
}
 
.about-main-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}
 
.about-main-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 600px;
}
 
.about-main-image {
  width: 100%;
  max-width: 600px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  background: #2a2a2a;
}
 
/* Achievement/Focus Cards Section - "WHAT WE FOCUS ON" */
.about-stats-section-wrapper {
  background: #000000;
  padding: 80px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
 
.about-stats-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.about-stats-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
 
.about-stats-subheading {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}
 
.about-stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
 
.about-stat-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px 28px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
  position: relative;
}
 
.about-stat-card:hover {
  transform: translateY(-4px);
  background: #252525;
  border-color: #3a3a3a;
}
 
/* Icon wrapper for cards */
.about-stat-card::before {
  content: '📊';
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
 
/* Different icons for different stat cards */
.about-stat-card:nth-child(1)::before {
  content: '🎯';
}
 
.about-stat-card:nth-child(2)::before {
  content: '📚';
}
 
.about-stat-card:nth-child(3)::before {
  content: '✅';
}
 
.about-stat-card:nth-child(4)::before {
  content: '👥';
}
 
.about-stat-card:nth-child(5)::before {
  content: '🌍';
}
 
.about-stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 75%;
}
 
.about-stat-description {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
 
/* Vision Section - Dark Background */
.about-vision-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  background: #000000;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}
 
.about-vision-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  padding: 0 40px 0 0;
}
 
.about-vision-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
 
.about-vision-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  padding: 0 0 0 40px;
}
 
/* Small badge - REMOVED */
.about-vision-right::before {
  display: none;
}
 
.about-vision-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0 0;
  line-height: 1.2;
  text-transform: uppercase;
}
 
.about-vision-subheading {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 12px 0;
}
 
/* Vision bullet list styling */
.about-vision-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.about-vision-right li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
 
.about-vision-right li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 700;
}
 
/* Vision CTA Button - HIDDEN */
.about-vision-right .btn-vision {
  display: none;
}
 
.about-vision-right .btn-vision:hover {
  display: none;
}
 
/* Mission Section - Dark Gray Background (About Us) */
.about-mission-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  width: 100%;
  background: #333333;
  margin: 0 auto;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}
 
.about-mission-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  padding: 0 40px 0 0;
}
 
/* Small badge for mission - REMOVED */
.about-mission-left::before {
  display: none;
}
 
.about-mission-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0 0;
  line-height: 1.2;
  text-transform: uppercase;
}
 
.about-mission-subheading {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0 0 16px 0;
}
 
/* Mission bullet list */
.about-mission-left ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.about-mission-left li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
 
.about-mission-left li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
 
/* Mission CTA Button - HIDDEN */
.about-mission-left .btn-mission {
  display: none;
}
 
.about-mission-left .btn-mission:hover {
  display: none;
}
 
.about-mission-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  padding: 0 0 0 40px;
}
 
.about-mission-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
 
/* Gradient CTA Strip - "Master AI Today" */
.about-cta-section {
  background: linear-gradient(90deg, #5c7cfa 0%, #b77ef2 50%, #ffa94d 100%);
  border-radius: 24px;
  padding: 60px 20px;
  margin: 80px auto;
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
 
.about-cta-heading {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}
 
.about-cta-subheading {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  opacity: 0.85;
}
 
.about-cta-button {
  background-color: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 12px;
}
 
.about-cta-button:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
 
/* Team Section - Horizontal Carousel */
.team-section {
  padding: 80px 80px 120px;
  width: 100%;
  background: #000000;
}
 
.team-header {
  text-align: left;
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
 
.team-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
}
 
.team-subheading {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}
 
/* Horizontal scroll container */
.team-cards-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0 32px;
  max-width: 1400px;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
 
.team-cards-row::-webkit-scrollbar {
  height: 6px;
}
 
.team-cards-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
 
.team-cards-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
 
.team-cards-row::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
 
.team-card {
  background: #1a1a1a;
  border-radius: 16px;
  border: 2px solid #2a2a2a;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  width: 360px;
  min-width: 360px;
  flex-shrink: 0;
}
 
.team-card:hover,
.team-card.active {
  transform: translateY(-8px);
  border-color: #4a5568;
  background: #252525;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
 
.team-card-image {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  background: #2a2a2a;
  border: 2px solid #3a3a3a;
}
 
.team-card.active .team-card-image {
  border-color: #4a5568;
}
 
.team-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
 
.team-card-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
 
.team-card-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
 
/* Carousel dots indicator */
.team-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
 
.team-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.team-carousel-dot.active {
  background: rgba(255, 255, 255, 0.8);
  width: 24px;
  border-radius: 4px;
}
 
/* Responsive Styles */
@media (max-width: 1800px) {
  .about-main-section,
  .about-stats-section-wrapper,
  .team-section {
    padding-left: 80px;
    padding-right: 80px;
  }
 
  .about-vision-section,
  .about-mission-section {
    padding-left: 80px;
    padding-right: 80px;
  }
 
  .about-cta-section {
    margin-left: 80px;
    margin-right: 80px;
  }
}
 
@media (max-width: 1400px) {
  .about-main-section {
    gap: 48px;
    padding: 64px 80px;
  }
 
  .about-main-heading {
    font-size: 44px;
  }
 
  .about-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
 
  .about-stats-section-wrapper {
    padding: 64px 80px;
  }
 
  .team-section {
    padding: 64px 80px 96px;
  }
}
 
@media (max-width: 968px) {
  .about-main-section {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
  }
 
  .about-main-heading {
    font-size: 36px;
  }
 
  .about-main-right {
    max-width: 100%;
  }
 
  .about-stats-section {
    grid-template-columns: 1fr;
  }
 
  .about-stats-section-wrapper {
    padding: 48px 24px;
  }
 
  .about-vision-section,
  .about-mission-section {
    flex-direction: column;
    margin-left: 24px;
    margin-right: 24px;
  }
 
  .about-vision-left,
  .about-vision-right,
  .about-mission-left,
  .about-mission-right {
    max-width: 100%;
    padding: 48px 32px;
  }
 
  .about-cta-section {
    margin-left: 24px;
    margin-right: 24px;
    padding: 48px 32px;
  }
 
  .team-section {
    padding: 48px 24px 80px;
  }
 
  .team-cards-row {
    padding-left: 0;
  }
}
 
@media (max-width: 768px) {
  .about-main-section {
    padding: 40px 24px;
  }
 
  .about-main-heading {
    font-size: 32px;
    margin-bottom: 16px;
  }
 
  .about-main-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
 
  .about-main-btns {
    flex-direction: column;
    width: 100%;
  }
 
  .about-main-section .btn-primary,
  .about-main-section .btn-secondary {
    width: 100%;
    text-align: center;
  }
 
  .about-stats-section-wrapper {
    padding: 48px 24px;
    gap: 32px;
  }
 
  .about-stats-heading {
    font-size: 32px;
  }
 
  .about-vision-heading,
  .about-mission-heading {
    font-size: 32px;
  }
 
  .about-vision-left,
  .about-vision-right,
  .about-mission-left,
  .about-mission-right {
    padding: 40px 32px;
  }
 
  .about-cta-section {
    padding: 40px 32px;
  }
 
  .about-cta-heading {
    font-size: 36px;
  }
 
  .team-section {
    padding: 48px 24px 64px;
  }
 
  .team-heading {
    font-size: 32px;
  }
}
 
@media (max-width: 480px) {
  .about-main-heading {
    font-size: 28px;
  }
 
  .about-main-description {
    font-size: 15px;
  }
 
  .about-main-section .btn-primary,
  .about-main-section .btn-secondary {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }
 
  .about-stats-heading {
    font-size: 28px;
  }
 
  .about-stat-card {
    padding: 24px 20px;
  }
 
  .about-vision-heading,
  .about-mission-heading {
    font-size: 28px;
  }
 
  .about-cta-heading {
    font-size: 32px;
  }
 
  .team-card {
    min-width: 240px;
  }
 
  .team-card-image {
    width: 120px;
    height: 120px;
  }
}/* About page specific styles can be added here */

/* Override container width for About page to use full width */
.preview-page .about-us-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
/* =====================================================
   PRIVACY POLICY PAGE - DARK THEME LAYOUT
   ===================================================== */

/* Override all global styles */
.privacy-policy-page,
.privacy-policy-page * {
  box-sizing: border-box !important;
}

/* Dark background for entire page */
.privacy-policy-page {
  min-height: 100vh !important;
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

/* Force dark background on body when privacy page is active */
body:has(.privacy-policy-page) {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
}

/* =====================================================
   MAIN LAYOUT STRUCTURE
   ===================================================== */
.privacy-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 72px 20px !important;
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
}

.privacy-content {
  max-width: 840px !important;
  margin: 0 auto !important;
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.privacy-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 42px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 44px 0 !important;
  letter-spacing: -0.025em !important;
}

.privacy-sections {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}

.privacy-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* Section headings (H2, H3) */
.privacy-section h2,
.privacy-section h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

/* Paragraphs */
.privacy-section p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin: 0 0 22px 0 !important;
}

/* Lists */
.privacy-section ul,
.privacy-section ol {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin: 0 0 22px 0 !important;
  padding-left: 18px !important;
}

.privacy-section li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
}

.privacy-section ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
}

.privacy-section ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
}

/* Links within content */
.privacy-section a {
  color: #ffffff !important;
  text-decoration: underline !important;
  transition: color 0.2s ease, outline 0.2s ease !important;
  border-radius: 4px !important;
  position: relative !important;
}

.privacy-section a:hover {
  color: #d1d5db !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.privacy-section a:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2) !important;
}

.privacy-section a:active {
  color: #f3f4f6 !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* =====================================================
   LOADING SKELETON
   ===================================================== */
.privacy-title-skeleton {
  width: 300px !important;
  height: 42px !important;
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%) !important;
  background-size: 200% 100% !important;
  animation: skeleton-loading 1.5s infinite !important;
  border-radius: 4px !important;
  margin: 0 auto 44px auto !important;
}

.privacy-content-skeleton {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.privacy-line-skeleton {
  height: 16px !important;
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%) !important;
  background-size: 200% 100% !important;
  animation: skeleton-loading 1.5s infinite !important;
  border-radius: 4px !important;
}

.privacy-line-skeleton.short {
  width: 60% !important;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.privacy-empty-state {
  text-align: center !important;
  padding: 48px 0 !important;
}

.privacy-empty-state p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #6b7280 !important;
  margin: 0 !important;
}

/* =====================================================
   RESPONSIVE DESIGN - BREAKPOINT ENFORCEMENT
   ===================================================== */

/* ≥1200px: Fixed container 1200px (default styles above) */
.privacy-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 72px 20px !important;
}

.privacy-content {
  max-width: 840px !important;
  margin: 0 auto !important;
}

/* 1024px–1199px: 3→2 columns, adjusted gutters */
@media (max-width: 1199px) and (min-width: 1024px) {
  .privacy-container {
    max-width: 1200px !important;
    padding: 64px 24px !important;
  }
  
  .privacy-content {
    max-width: 800px !important;
  }
  
  .privacy-title {
    font-size: 40px !important;
    margin-bottom: 42px !important;
  }
  
  .privacy-sections {
    gap: 26px !important;
  }
  
  .privacy-section h2,
  .privacy-section h3 {
    font-size: 21px !important;
    margin-bottom: 13px !important;
  }
  
  .privacy-section p {
    margin-bottom: 20px !important;
  }
  
  .privacy-section ul,
  .privacy-section ol {
    margin-bottom: 20px !important;
    padding-left: 16px !important;
  }
  
  .privacy-section li {
    margin-bottom: 9px !important;
  }
}

/* 768px–1023px: 2 columns */
@media (max-width: 1023px) and (min-width: 768px) {
  .privacy-container {
    max-width: 100% !important;
    padding: 48px 20px !important;
  }
  
  .privacy-content {
    max-width: 100% !important;
    padding: 0 8px !important;
  }
  
  .privacy-title {
    font-size: 36px !important;
    margin-bottom: 36px !important;
  }
  
  .privacy-sections {
    gap: 24px !important;
  }
  
  .privacy-section h2,
  .privacy-section h3 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
  
  .privacy-section,
  .privacy-section p,
  .privacy-section ul,
  .privacy-section ol,
  .privacy-section li {
    font-size: 15px !important;
  }
  
  .privacy-section p {
    margin-bottom: 18px !important;
  }
  
  .privacy-section ul,
  .privacy-section ol {
    margin-bottom: 18px !important;
    padding-left: 16px !important;
  }
  
  .privacy-section li {
    margin-bottom: 8px !important;
  }
}

/* <768px: Single column, 44px min tap targets */
@media (max-width: 767px) {
  .privacy-container {
    max-width: 100% !important;
    padding: 32px 16px !important;
  }
  
  .privacy-content {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  .privacy-title {
    font-size: 32px !important;
    margin-bottom: 32px !important;
    line-height: 1.1 !important;
  }
  
  .privacy-sections {
    gap: 20px !important;
  }
  
  .privacy-section h2,
  .privacy-section h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
  }
  
  .privacy-section,
  .privacy-section p,
  .privacy-section ul,
  .privacy-section ol,
  .privacy-section li {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  
  .privacy-section p {
    margin-bottom: 16px !important;
  }
  
  .privacy-section ul,
  .privacy-section ol {
    margin-bottom: 16px !important;
    padding-left: 14px !important;
  }
  
  .privacy-section li {
    margin-bottom: 6px !important;
  }
  
  /* Ensure minimum 44px tap targets for interactive elements */
  .privacy-section a {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-block !important;
    padding: 12px 8px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    vertical-align: middle !important;
  }
  
  /* Enhanced focus states for mobile */
  .privacy-section a:focus-visible {
    outline: 3px solid #ffffff !important;
    outline-offset: 3px !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3) !important;
  }
  
  /* Loading skeleton adjustments for mobile */
  .privacy-title-skeleton {
    width: 280px !important;
    height: 32px !important;
    margin: 0 auto 32px auto !important;
  }
  
  .privacy-line-skeleton {
    height: 14px !important;
  }
  
  .privacy-content-skeleton {
    gap: 12px !important;
  }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
  .privacy-container {
    padding: 24px 12px !important;
  }
  
  .privacy-title {
    font-size: 28px !important;
    margin-bottom: 28px !important;
  }
  
  .privacy-sections {
    gap: 18px !important;
  }
  
  .privacy-section h2,
  .privacy-section h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  
  .privacy-section,
  .privacy-section p,
  .privacy-section ul,
  .privacy-section ol,
  .privacy-section li {
    font-size: 13px !important;
  }
  
  .privacy-section p {
    margin-bottom: 14px !important;
  }
  
  .privacy-section ul,
  .privacy-section ol {
    margin-bottom: 14px !important;
    padding-left: 12px !important;
  }
  
  .privacy-section li {
    margin-bottom: 5px !important;
  }
  
  /* Maintain 44px minimum tap targets */
  .privacy-section a {
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 14px 6px !important;
    text-align: center !important;
    vertical-align: middle !important;
  }
  
  /* Enhanced focus states for extra small screens */
  .privacy-section a:focus-visible {
    outline: 3px solid #ffffff !important;
    outline-offset: 2px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4) !important;
  }
  
  .privacy-title-skeleton {
    width: 240px !important;
    height: 28px !important;
    margin: 0 auto 28px auto !important;
  }
}

/* =====================================================
   LAYOUT STABILITY & API-DRIVEN CONTENT
   ===================================================== */

/* Prevent layout shifts for API-driven content */
.privacy-sections {
  min-height: 200px !important;
  contain: layout style !important;
}

.privacy-section {
  contain: layout style !important;
  will-change: auto !important;
}

/* Ensure consistent spacing regardless of content length */
.privacy-section:empty {
  min-height: 20px !important;
}

/* Prevent text reflow during loading */
.privacy-section p,
.privacy-section ul,
.privacy-section ol {
  min-height: 1.6em !important;
}

/* Stable loading states */
.privacy-content-skeleton {
  min-height: 300px !important;
  contain: layout style !important;
}

/* Prevent cumulative layout shift */
.privacy-container {
  contain: layout style !important;
}

/* =====================================================
   FOOTER RESPONSIVENESS (if footer is present)
   ===================================================== */

/* Ensure footer maintains proper spacing across breakpoints */
.privacy-policy-page + .footer-section,
.privacy-policy-page ~ .footer-section {
  margin-top: 0 !important;
}

/* Footer responsive adjustments for privacy page context */
@media (max-width: 1023px) {
  .privacy-policy-page + .footer-section .footer-container,
  .privacy-policy-page ~ .footer-section .footer-container {
    padding: 48px 20px !important;
  }
}

@media (max-width: 767px) {
  .privacy-policy-page + .footer-section .footer-container,
  .privacy-policy-page ~ .footer-section .footer-container {
    padding: 32px 16px !important;
  }
}

@media (max-width: 480px) {
  .privacy-policy-page + .footer-section .footer-container,
  .privacy-policy-page ~ .footer-section .footer-container {
    padding: 24px 12px !important;
  }
}

/* =====================================================
   ACCESSIBILITY - FOCUS MANAGEMENT & CONTRAST
   ===================================================== */

/* Main page container focus management */
.privacy-policy-page {
  display: block !important;
}

.privacy-policy-page:focus-visible {
  outline: none !important;
}

/* Enhanced focus-visible for all interactive elements */
.privacy-title:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 4px !important;
  border-radius: 6px !important;
}

.privacy-section h2:focus-visible,
.privacy-section h3:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* Loading skeleton focus states */
.privacy-title-skeleton:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}

/* =====================================================
   TEXT CONTRAST ENHANCEMENTS
   ===================================================== */

/* Ensure minimum 4.5:1 contrast ratio for all text */
.privacy-title {
  color: #ffffff !important; /* 21:1 contrast on #1a1a1a */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.privacy-section h2,
.privacy-section h3 {
  color: #ffffff !important; /* 21:1 contrast on #1a1a1a */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.privacy-section,
.privacy-section p,
.privacy-section ul,
.privacy-section ol,
.privacy-section li {
  color: #d1d5db !important; /* 7.2:1 contrast on #1a1a1a - enhanced from #9ca3af */
}

/* Enhanced contrast for links */
.privacy-section a {
  color: #ffffff !important; /* 21:1 contrast on #1a1a1a */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.privacy-section a:hover {
  color: #f3f4f6 !important; /* 24:1 contrast on #1a1a1a */
}

/* Empty state text contrast */
.privacy-empty-state p {
  color: #9ca3af !important; /* 4.8:1 contrast on #1a1a1a */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* =====================================================
   ARIA-LABEL SUPPORT & SCREEN READER ENHANCEMENTS
   ===================================================== */

/* Ensure proper landmark identification */
.privacy-policy-page[role="main"] {
  /* Main content landmark */
}

/* Enhanced focus indicators for screen readers */
.privacy-section a:focus-visible::before {
  content: "Link: " !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Additional interactive element focus states */
.privacy-container:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 4px !important;
  border-radius: 8px !important;
}

.privacy-content:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  border-radius: 6px !important;
}

/* Loading state accessibility */
.privacy-title-skeleton:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%) !important;
}

.privacy-line-skeleton:focus-visible {
  outline: 1px solid #ffffff !important;
  outline-offset: 1px !important;
  border-radius: 2px !important;
}

/* Skip link support (if needed) */
.privacy-skip-link {
  position: absolute !important;
  top: -40px !important;
  left: 6px !important;
  background: #000000 !important;
  color: #ffffff !important;
  padding: 8px !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  z-index: 1000 !important;
  transition: top 0.3s !important;
}

.privacy-skip-link:focus {
  top: 6px !important;
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
}

/* =====================================================
   HIGH CONTRAST MODE ENHANCEMENTS
   ===================================================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .privacy-title {
    color: #ffffff !important;
    text-shadow: 0 0 0 !important;
    border: 2px solid #ffffff !important;
    padding: 8px !important;
    border-radius: 4px !important;
  }
  
  .privacy-section h2,
  .privacy-section h3 {
    color: #ffffff !important;
    text-shadow: 0 0 0 !important;
    border-bottom: 2px solid #ffffff !important;
    padding-bottom: 4px !important;
  }
  
  .privacy-section,
  .privacy-section p,
  .privacy-section ul,
  .privacy-section ol,
  .privacy-section li {
    color: #ffffff !important;
    text-shadow: 0 0 0 !important;
  }
  
  .privacy-section a {
    color: #ffffff !important;
    background-color: #000000 !important;
    border: 2px solid #ffffff !important;
    padding: 4px 8px !important;
    text-decoration: none !important;
  }
  
  .privacy-section a:hover,
  .privacy-section a:focus-visible {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
  
  .privacy-empty-state p {
    color: #ffffff !important;
    text-shadow: 0 0 0 !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .privacy-title-skeleton,
  .privacy-line-skeleton {
    animation: none !important;
    background: #2a2a2a !important;
  }
  
  .privacy-section a {
    transition: none !important;
  }
  
  .privacy-section a:focus-visible {
    transition: none !important;
  }
}

/* =====================================================
   ADDITIONAL ACCESSIBILITY ENHANCEMENTS
   ===================================================== */

/* Ensure all text meets WCAG AA contrast requirements */
.privacy-section strong,
.privacy-section b {
  color: #ffffff !important; /* Enhanced contrast for emphasis */
  font-weight: 600 !important;
}

.privacy-section em,
.privacy-section i {
  color: #e5e7eb !important; /* Slightly enhanced contrast for emphasis */
  font-style: italic !important;
}

/* Enhanced focus states for better visibility */
.privacy-section a:focus-visible {
  position: relative !important;
  z-index: 10 !important;
}

/* Ensure proper spacing for focus indicators */
.privacy-section a {
  margin: 2px !important;
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
  .privacy-policy-page {
    background: #0a0a0a !important;
  }
  
  .privacy-section a:focus-visible {
    outline-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3) !important;
  }
}

/* Print styles for accessibility */
@media print {
  .privacy-policy-page {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  .privacy-title,
  .privacy-section h2,
  .privacy-section h3 {
    color: #000000 !important;
  }
  
  .privacy-section,
  .privacy-section p,
  .privacy-section ul,
  .privacy-section ol,
  .privacy-section li {
    color: #000000 !important;
  }
  
  .privacy-section a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
} /* =====================================================
   TERMS AND CONDITIONS PAGE - DARK THEME LAYOUT
   ===================================================== */

/* Override all global styles */
.terms-page,
.terms-page * {
  box-sizing: border-box !important;
}

/* Dark background for entire page */
.terms-page {
  min-height: 100vh !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

/* Force dark background on body when terms page is active */
body:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* Override RootLayout background */
.min-h-screen:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* Override any Tailwind background classes */
.bg-secondary-50:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

html:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

#root:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* Override any parent container backgrounds */
.app-container:has(.terms-page),
.main-container:has(.terms-page),
.content-wrapper:has(.terms-page),
.layout-wrapper:has(.terms-page) {
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* =====================================================
   MAIN LAYOUT STRUCTURE
   ===================================================== */
.terms-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 72px 24px !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

.terms-content {
  max-width: 820px !important;
  margin: 0 auto !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.terms-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 44px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 48px 0 !important;
  letter-spacing: -0.02em !important;
}

.terms-sections {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

.terms-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* =====================================================
   SECTION HEADINGS (H2, H3)
   ===================================================== */
.terms-section h2,
.terms-section h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  margin: 40px 0 24px 0 !important;
  letter-spacing: -0.01em !important;
}

.terms-section h2:first-child,
.terms-section h3:first-child {
  margin-top: 0 !important;
}

/* =====================================================
   PARAGRAPHS
   ===================================================== */
.terms-section p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  margin: 0 0 24px 0 !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.terms-section p:last-child {
  margin-bottom: 0 !important;
}

/* =====================================================
   LISTS
   ===================================================== */
.terms-section ul {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  margin: 0 0 24px 0 !important;
  padding-left: 20px !important;
  list-style-type: disc !important;
  list-style-position: outside !important;
}

.terms-section ul li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  margin-bottom: 12px !important;
  display: list-item !important;
  list-style-type: disc !important;
  list-style-position: outside !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.terms-section ul li:last-child {
  margin-bottom: 0 !important;
}

.terms-section ul li::marker {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: normal !important;
  font-family: inherit !important;
}

.terms-section ol {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  margin: 0 0 24px 0 !important;
  padding-left: 20px !important;
  list-style-type: decimal !important;
  list-style-position: outside !important;
}

.terms-section ol li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #CCCCCC !important;
  margin-bottom: 12px !important;
  display: list-item !important;
  list-style-type: decimal !important;
  list-style-position: outside !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.terms-section ol li:last-child {
  margin-bottom: 0 !important;
}

/* =====================================================
   LINKS
   ===================================================== */
.terms-section a {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: #ffffff !important;
  text-underline-offset: 2px !important;
  transition: all 0.2s ease !important;
}

.terms-section a:hover {
  color: #CCCCCC !important;
  text-decoration-color: #CCCCCC !important;
}

.terms-section a:focus {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  border-radius: 2px !important;
}

.terms-section a:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
  border-radius: 2px !important;
}

/* =====================================================
   LOADING SKELETON
   ===================================================== */
.terms-title-skeleton {
  width: 400px !important;
  height: 44px !important;
  background: linear-gradient(90deg, #2A2A2A 25%, #3A3A3A 50%, #2A2A2A 75%) !important;
  background-size: 200% 100% !important;
  animation: skeleton-loading 1.5s infinite !important;
  border-radius: 4px !important;
  margin: 0 auto 48px auto !important;
}

.terms-skeleton-lines {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.terms-skeleton-line {
  height: 16px !important;
  background: linear-gradient(90deg, #2A2A2A 25%, #3A3A3A 50%, #2A2A2A 75%) !important;
  background-size: 200% 100% !important;
  animation: skeleton-loading 1.5s infinite !important;
  border-radius: 4px !important;
  width: 100% !important;
}

.terms-skeleton-line.short {
  width: 60% !important;
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.terms-empty-state {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #9CA3AF !important;
  text-align: center !important;
  padding: 48px 0 !important;
  background: #1A1A1A !important;
  background-color: #1A1A1A !important;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
  .terms-container {
    padding: 60px 20px !important;
  }
  
  .terms-content {
    max-width: 100% !important;
  }
  
  .terms-title {
    font-size: 40px !important;
  }
}

@media (max-width: 768px) {
  .terms-container {
    padding: 48px 16px !important;
  }
  
  .terms-title {
    font-size: 36px !important;
    margin-bottom: 32px !important;
  }
  
  .terms-section h2,
  .terms-section h3 {
    font-size: 20px !important;
    margin: 32px 0 20px 0 !important;
  }
  
  .terms-section,
  .terms-section p,
  .terms-section ul,
  .terms-section ol {
    font-size: 15px !important;
  }
  
  .terms-section ul,
  .terms-section ol {
    padding-left: 16px !important;
  }
}

@media (max-width: 480px) {
  .terms-container {
    padding: 32px 12px !important;
  }
  
  .terms-title {
    font-size: 32px !important;
    margin-bottom: 24px !important;
  }
  
  .terms-section h2,
  .terms-section h3 {
    font-size: 18px !important;
    margin: 24px 0 16px 0 !important;
  }
  
  .terms-section,
  .terms-section p,
  .terms-section ul,
  .terms-section ol {
    font-size: 14px !important;
  }
  
  .terms-section ul,
  .terms-section ol {
    padding-left: 12px !important;
  }
}

/* =====================================================
   ACCESSIBILITY IMPROVEMENTS
   ===================================================== */
.terms-page {
  /* Ensure proper focus management */
  outline: none !important;
}

.terms-page:focus-within {
  outline: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .terms-section {
    color: #ffffff !important;
  }
  
  .terms-section p,
  .terms-section ul,
  .terms-section ol {
    color: #ffffff !important;
  }
  
  .terms-section a {
    color: #ffffff !important;
    text-decoration: underline !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .terms-section a {
    transition: none !important;
  }
  
  .terms-title-skeleton,
  .terms-skeleton-line {
    animation: none !important;
  }
} /* Product Card Component Styles */
.product-card {
  background-color: #0F0F0F !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  height: 420px !important;
  display: flex !important;
  flex-direction: column !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px) !important;
  background-color: #151515 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

/* Product Image Container */
.product-image-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #0F0F0F;
}

/* Product Tags - Status Badges */
.product-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
  flex-wrap: wrap;
}

.product-tag {
  background-color: #EF4444;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-tag:first-child {
  background-color: #EF4444; /* Red for category */
}

.product-tag:nth-child(2) {
  background-color: #3B82F6; /* Blue for course type */
}

/* Product Content Wrapper */
.product-content-wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

/* Product Info */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF !important;
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 8px;
}

/* Price Container */
.price-container {
  margin-top: auto;
  padding-top: 12px;
}

.price-details {
  font-size: 16px;
  font-weight: 600;
  color: #10B981;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  padding-top: 16px;
}

.view-course-btn {
  width: 100%;
  background-color: #EF4444 !important;
  color: #FFFFFF !important;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-course-btn:hover {
  background-color: #DC2626 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-text {
  color: #FFFFFF !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    height: 400px !important;
  }
  
  .product-image-container {
    height: 180px;
  }
  
  .product-content-wrapper {
    padding: 16px;
  }
  
  .product-title {
    font-size: 16px;
    min-height: 44px;
  }
  
  .price-details {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-card {
    height: 380px !important;
  }
  
  .product-image-container {
    height: 160px;
  }
  
  .product-tags {
    top: 8px;
    left: 8px;
    gap: 6px;
  }
  
  .product-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}
/* Learning Library Page - Dark Theme */
.learning-library-page {
  font-family: 'Plus Jakarta Sans', 'Inter', Arial, sans-serif;
  background: #1A1A1A;
  min-height: 100vh;
  padding: 0;
  color: #FFFFFF;
}

.learning-library-page .container {
  padding: 24px 48px 0 !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navigation Bar */
.courses-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 32px;
  background-color: #0F0F0F;
  border-radius: 8px;
  padding: 20px 24px;
}

.courses-title {
  font-family: 'Plus Jakarta Sans', 'Inter', Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
}

.courses-filters {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: #0F0F0F;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 10px 16px;
  height: 40px;
  gap: 8px;
  width: 350px;
}

.search-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.search-icon path {
  stroke: #6B7280;
}

.search-bar input {
  font-family: 'Plus Jakarta Sans', 'Inter', Helvetica, sans-serif;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: #FFFFFF;
  width: 100%;
}

.search-bar input::-moz-placeholder {
  color: #6B7280;
  opacity: 1;
}

.search-bar input::placeholder {
  color: #6B7280;
  opacity: 1;
}

.search-bar:hover {
  border-color: #374151;
}

.search-bar:focus-within {
  border-color: #4B5563;
}

/* Filter Dropdowns */
.filter-dropdowns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dropdown-select {
  background: #0F0F0F;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 10px 20px;
  padding-right: 40px;
  font-size: 14px;
  color: #9CA3AF;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  min-width: 180px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  height: 40px;
  transition: all 0.2s ease;
}

.dropdown-select:hover {
  background-color: #1A1A1A;
  border-color: #374151;
  color: #FFFFFF;
}

.dropdown-select:focus {
  outline: none;
  border-color: #4B5563;
  color: #FFFFFF;
}

/* Products Section */
.products-section {
  margin-bottom: 48px;
  padding: 0;
}

.products-section .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}

/* Product Card */
.product-card {
  background-color: #0F0F0F;
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  background-color: #151515;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Product Image Container */
.product-image-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #0F0F0F;
}

/* Product Tags */
.product-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.product-tag {
  background-color: #EF4444;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-tag:nth-child(2) {
  background-color: #3B82F6;
}

/* Product Content */
.product-content-wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 8px;
}

.price-container {
  margin-top: auto;
  padding-top: 12px;
}

.price-details {
  font-size: 16px;
  font-weight: 600;
  color: #10B981;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  padding-top: 16px;
}

.view-course-btn {
  width: 100%;
  background-color: #EF4444;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-course-btn:hover {
  background-color: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-text {
  color: #FFFFFF;
}

/* No Data Message */
.no-data-message {
  font-size: 18px;
  font-weight: 500;
  color: #9CA3AF;
  text-align: center;
  padding: 60px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .learning-library-page .container {
    padding: 20px 32px 0 !important;
  }

  .courses-navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .courses-filters {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-bar {
    width: 100%;
    max-width: 500px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .learning-library-page .container {
    padding: 16px 16px 0 !important;
  }

  .courses-navbar {
    padding: 16px;
  }
  
  .courses-title {
    font-size: 20px;
  }
  
  .courses-filters {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .search-bar {
    width: 100%;
  }
  
  .filter-dropdowns {
    width: 100%;
    flex-direction: column;
  }

  .dropdown-select {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    height: 400px;
  }

  .product-image-container {
    height: 180px;
  }
}

/* Override any white backgrounds */
.learning-library-page * {
  background-color: inherit;
}

.learning-library-page [style*="background: white"],
.learning-library-page [style*="background-color: white"],
.learning-library-page [style*="background: #fff"],
.learning-library-page [style*="background-color: #fff"] {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

/* Ensure dark theme for all elements */
body:has(.learning-library-page) {
  background-color: #1A1A1A !important;
}/* Global Dark Theme Override for Learning Library Page */

/* Force dark background on body and all parent containers */
body:has(.learning-library-page) {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

html:has(.learning-library-page) {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

#root:has(.learning-library-page) {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

/* Override any parent container backgrounds */
.app-container:has(.learning-library-page),
.main-container:has(.learning-library-page),
.content-wrapper:has(.learning-library-page),
.layout-wrapper:has(.learning-library-page) {
  background-color: #1A1A1A !important;
  background: #1A1A1A !important;
}

/* Header styling when on Learning Library page */
header:has(+ * .learning-library-page),
.header:has(+ * .learning-library-page),
.navbar:has(+ * .learning-library-page) {
  background-color: #0F0F0F !important;
  border-bottom: 1px solid #2A2A2A;
}

/* Navigation links in header */
header:has(+ * .learning-library-page) a,
.header:has(+ * .learning-library-page) a,
.navbar:has(+ * .learning-library-page) a {
  color: #9CA3AF !important;
}

header:has(+ * .learning-library-page) a:hover,
.header:has(+ * .learning-library-page) a:hover,
.navbar:has(+ * .learning-library-page) a:hover {
  color: #FFFFFF !important;
}

/* Footer styling when on Learning Library page */
footer:has(.learning-library-page),
.footer:has(.learning-library-page) {
  background-color: #0F0F0F !important;
  border-top: 1px solid #2A2A2A;
  color: #9CA3AF !important;
}

/* Ensure all text is visible */
.learning-library-page * {
  color: inherit;
}

/* Override any inline styles */
.learning-library-page [style*="background: white"] {
  background: #1A1A1A !important;
}

.learning-library-page [style*="background-color: white"] {
  background-color: #1A1A1A !important;
}

.learning-library-page [style*="background: #fff"] {
  background: #1A1A1A !important;
}

.learning-library-page [style*="background-color: #fff"] {
  background-color: #1A1A1A !important;
}

.learning-library-page [style*="background: rgb(255"] {
  background: #1A1A1A !important;
}

.learning-library-page [style*="background-color: rgb(255"] {
  background-color: #1A1A1A !important;
}

/* Ensure smooth transitions */
.learning-library-page,
.learning-library-page * {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
/* =====================================================
   COURSE CARD COMPONENT STYLES
   Shared card styles for consistent design
   ===================================================== */

/* Course Card Container */
.course-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  height: 100%;
  position: relative;
}

.course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Course Image Container */
.course-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #F3F4F6;
  flex-shrink: 0;
}

.course-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image {
  transform: scale(1.05);
}

/* Course Card Body */
.course-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* Product Tags */
.product-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 28px;
}

.product-tag {
  padding: 0.25rem 0.625rem;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #3B82F6;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
}

/* Course Content Section */
.course-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* Course Info */
.course-info {
  flex: 1;
  min-height: 48px;
}

.course-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Course Price */
.course-price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #F3F4F6;
}

.price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.price-value:contains("Free"),
.price-value:contains("FREE") {
  color: #10B981;
}

/* View Course Button */
.view-course-btn {
  background: transparent;
  color: #5681EF;
  border: 1px solid #5681EF;
  border-radius: 8px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  margin-top: auto;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
  white-space: nowrap;
}

.view-course-btn:hover {
  background: #5681EF;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(86, 129, 239, 0.2);
}

.view-course-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(86, 129, 239, 0.15);
  border-color: #4569D4;
}

.view-course-btn:active {
  transform: translateY(0);
}


/* Course Metadata (if needed) */
.course-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #6B7280;
}

.course-duration,
.course-lessons,
.course-level {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .course-image-container {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .course-card-body {
    padding: 1rem;
  }
  
  .course-title {
    font-size: 0.9375rem;
  }
  
  .price-value {
    font-size: 1.125rem;
  }
  
  .view-course-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .course-image-container {
    height: 160px;
  }
  
  .course-card-body {
    padding: 0.875rem;
    gap: 0.625rem;
  }
  
  .product-tag {
    font-size: 0.625rem;
    padding: 0.1875rem 0.5rem;
  }
  
  .course-title {
    font-size: 0.875rem;
    -webkit-line-clamp: 3;
  }
  
  .price-value {
    font-size: 1rem;
  }
}

/* Loading State */
.course-card.loading {
  pointer-events: none;
}

.course-card.loading .course-image-container,
.course-card.loading .product-tag,
.course-card.loading .course-title,
.course-card.loading .price-value,
.course-card.loading .view-course-btn {
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Accessibility */
.course-card:focus-within {
  outline: 2px solid #5681EF;
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .course-card {
    border-width: 2px;
  }
  
  .product-tag {
    border-width: 2px;
  }
  
  .view-course-btn {
    border-width: 2px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .course-card,
  .course-image,
  .view-course-btn {
    transition: none;
  }
  
  .course-card:hover {
    transform: none;
  }
  
  .course-card:hover .course-image {
    transform: none;
  }
}
/* Shared Modal Styles - Pixel Perfect Design */

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Modal Content */
.modal-content {
  background: #1a1a1a;
  border-radius: 24px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

/* Modal Header */
.modal-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 32px 0 32px;
  margin-bottom: 48px;
}

/* Modal Tabs */
.modal-tabs {
  display: flex;
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-tabs .tab {
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-tabs .tab.active {
  background: linear-gradient(135deg, #d94841 0%, #e85d56 100%);
  color: #ffffff;
}

.modal-tabs .tab.inactive {
  background: #f5f5f5;
  color: #757575;
}

/* Remove greenTab override - use red for consistency */
.modal-tabs .tab.greenTab.active {
  background: linear-gradient(135deg, #d94841 0%, #e85d56 100%);
  color: #ffffff;
}

.modal-tabs .tab.greenTab.inactive {
  background: #f5f5f5;
  color: #757575;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  z-index: 10;
  color: #ffffff;
}

.modal-close:hover {
  opacity: 0.7;
}

.modal-close svg path {
  stroke: currentColor;
}

/* Thank you modal close button - same as dark modals */
.thankyou-modal .modal-close {
  color: #ffffff;
}

/* Modal Body */
.modal-body {
  padding: 0 48px 48px 48px;
}

.checkout-body {
  padding: 0 48px 48px 48px;
}

/* Plan Details Section */
.plan-details-section {
  margin-bottom: 40px;
}

.plan-card-container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.plan-card {
  flex-shrink: 0;
}

.card-image {
  width: 200px;
  height: 140px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #333;
  position: relative;
}

.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.95"><rect x="15" y="45" width="70" height="45" rx="4" fill="%23ffffff" opacity="0.9"/><rect x="20" y="50" width="60" height="30" rx="2" fill="%232a2a2a" opacity="0.8"/><rect x="45" y="80" width="10" height="8" fill="%23ffffff" opacity="0.9"/><rect x="35" y="88" width="30" height="3" rx="1.5" fill="%23ffffff" opacity="0.9"/><path d="M50 20 L35 28 L35 38 L50 46 L65 38 L65 28 Z" fill="%23ffffff" opacity="0.95"/><path d="M42 28 L50 20 L58 28" stroke="%232a2a2a" stroke-width="2" stroke-linecap="round" opacity="0.6"/><circle cx="50" cy="30" r="2" fill="%232a2a2a" opacity="0.6"/><rect x="48" y="32" width="4" height="8" fill="%232a2a2a" opacity="0.6"/></g></svg>') center/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.9);
}

.plan-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.plan-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #b0b0b0;
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.plan-courses {
  font-size: 14px;
  color: #909090;
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Form Section */
.form-section {
  margin-bottom: 40px;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  background: #565656;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
  transition: background 0.2s;
}

.form-group input::-moz-placeholder {
  color: #a0a0a0;
}

.form-group input::placeholder {
  color: #a0a0a0;
}

.form-group input:focus {
  outline: none;
  background: #606060;
}

/* Action Section */
.action-section {
  margin-top: 40px;
}

.next-button,
.checkout-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #d94841 0%, #e85d56 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(217, 72, 65, 0.3);
}

.next-button:hover,
.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 72, 65, 0.4);
}

.next-button:disabled,
.checkout-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.terms-text {
  text-align: center;
  font-size: 13px;
  color: #b0b0b0;
  margin-top: 20px;
  line-height: 1.5;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.terms-text a {
  color: #5681ef;
  text-decoration: underline;
}

/* Checkout Modal Specific */
.checkout-modal .modal-body.checkout-body {
  padding: 0 48px 48px 48px;
}

.checkout-modal .total-section {
  margin-bottom: 40px;
}

.total-container {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 24px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.total-line + .total-line {
  border-top: 1px solid #3a3a3a;
}

.total-label {
  font-size: 15px;
  color: #b0b0b0;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.total-price {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.total-line.total-highlight .total-label {
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
}

.total-line.total-highlight .total-price {
  font-size: 20px;
  color: #d94841;
  font-weight: 700;
}

/* Thank You Modal - Dark Theme */
.thankyou-modal {
  background: #1a1a1a;
}

.thankyou-body {
  padding: 60px 48px 48px 48px;
  text-align: center;
}

.thankyou-checkmark-circle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.thankyou-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thankyou-saved {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 40px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thankyou-start-btn {
  width: 100%;
  padding: 18px;
  background: #5681ef;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(86, 129, 239, 0.3);
}

.thankyou-start-btn:hover {
  background: #4570de;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(86, 129, 239, 0.4);
}

/* Already Purchased Modal */
.already-purchased-body {
  padding: 60px 48px 48px 48px;
  text-align: center;
}

.info-checkmark-circle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-ok-btn {
  width: 100%;
  padding: 18px;
  background: #5681ef;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(86, 129, 239, 0.3);
}

.modal-ok-btn:hover {
  background: #4570de;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(86, 129, 239, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    border-radius: 16px;
  }

  .modal-header {
    padding: 24px 24px 0 24px;
    margin-bottom: 32px;
  }

  .modal-close {
    top: 24px;
    right: 24px;
  }

  .modal-body {
    padding: 0 24px 32px 24px;
  }

  .modal-tabs .tab {
    padding: 12px 24px;
    font-size: 16px;
  }

  .plan-card-container {
    flex-direction: column;
    gap: 20px;
  }

  .card-image {
    width: 100%;
    height: 180px;
  }

  .plan-title {
    font-size: 24px;
  }

  .thankyou-body {
    padding: 40px 24px 32px 24px;
  }
}

/* =====================================================
   SUBSCRIPTION PAGE - DARK THEME LAYOUT
   ===================================================== */

/* Override all global styles */
.subscription-page,
.subscription-page * {
  box-sizing: border-box !important;
}

/* Dark background for entire page */
.subscription-page {
  min-height: 100vh !important;
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

/* Force dark background on body when subscription page is active */
body:has(.subscription-page) {
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

.subscription-page .container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 2rem !important;
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

/* =====================================================
   MAIN LAYOUT STRUCTURE
   ===================================================== */
.subscription-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  width: 100% !important;
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

.main-content {
  width: 100% !important;
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
}

/* =====================================================
   PLAN TABS
   ===================================================== */
.subscription-tabs-row {
  display: flex !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
  flex-wrap: wrap !important;
  background: transparent !important;
}

.subscription-tabs-row .tab {
  padding: 0.625rem 1.5rem !important;
  background: #3a3a3a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 24px !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
  outline: none !important;
  opacity: 0.7 !important;
}

.subscription-tabs-row .tab.active {
  background: #ffffff !important;
  color: #ef4444 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.subscription-tabs-row .tab:hover:not(.active) {
  opacity: 0.85 !important;
}

/* =====================================================
   SUBSCRIPTION INFO SECTION
   ===================================================== */
.subscription-info-wrapper {
  width: 100% !important;
  margin-bottom: 3.5rem !important;
  padding-bottom: 1rem !important;
}

.subscription-sidebar {
  width: 100% !important;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  position: static !important;
  height: auto !important;
}

.plan-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

/* Price Section */
.plan-pricing {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  flex-shrink: 0 !important;
}

.plan-pricing::before {
  content: 'Price' !important;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0.25rem !important;
}

.subscription-sidebar .price {
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  display: block !important;
}

/* Courses Included Section */
.subscription-sidebar .courses-included {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
}

.courses-included::before {
  content: 'Courses Included' !important;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  display: block !important;
}

.courses-included::after {
  content: attr(data-count) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  display: inline-block !important;
}

/* Categories Section */
.categories-section {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.categories-section::before {
  content: 'Categories Included' !important;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0.25rem !important;
}

.plan-categories {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

.category-tag {
  padding: 0.5rem 1rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
}

/* Description Section */
.plan-description {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  max-width: 100% !important;
  grid-column: 1 / -1 !important;
}

/* Buy Button */
.buy-plan-btn {
  padding: 1rem 2.5rem !important;
  background: #ef4444 !important;
  background-color: #ef4444 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  align-self: center !important;
}

.buy-plan-btn:hover {
  background: #dc2626 !important;
  background-color: #dc2626 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

/* Restructure layout - top row with info, bottom with description and button */
.subscription-sidebar .plan-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

/* Create a top row container */
.plan-top-row {
  display: flex !important;
  align-items: center !important;
  gap: 3rem !important;
  width: 100% !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.plan-top-row .plan-pricing {
  flex-shrink: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding-right: 2rem !important;
}

.plan-top-row .courses-included {
  flex-shrink: 0 !important;
  font-size: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding-right: 2rem !important;
}

.plan-top-row .categories-section {
  flex: 1 !important;
}

.subscription-sidebar .plan-description {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.subscription-sidebar .buy-plan-btn {
  align-self: flex-start !important;
  margin-top: 0 !important;
}

/* =====================================================
   SEARCH AND FILTERS BAR
   ===================================================== */
.subscription-filters-row {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
  padding: 0 !important;
  background: transparent !important;
}

.search-container {
  flex: 0 0 auto !important;
  width: 320px !important;
}

.search-bar {
  display: flex !important;
  align-items: center !important;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 0 1rem !important;
  height: 44px !important;
  gap: 0.625rem !important;
}

.search-bar:focus-within {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
}

.search-icon {
  width: 20px !important;
  height: 20px !important;
  opacity: 0.5 !important;
  filter: invert(1) !important;
}

.search-bar input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  font-size: 0.875rem !important;
  color: #ffffff !important;
  background: transparent !important;
}

.search-bar input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.filter-dropdowns {
  display: flex !important;
  gap: 0.75rem !important;
  flex: 1 !important;
}

.dropdown {
  position: relative !important;
}

.dropdown-select {
  padding: 0 2.5rem 0 1rem !important;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  color: #ffffff !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  min-width: 180px !important;
  height: 44px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
}

.dropdown-select:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.dropdown-select:focus {
  border-color: #6366f1 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
}

/* =====================================================
   COURSE SECTIONS AND GRID
   ===================================================== */
.course-sections-wrapper {
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
}

.courses-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  margin-bottom: 2.5rem !important;
  background: transparent !important;
  background-color: transparent !important;
}

.course-card {
  background: #000000 !important;
  background-color: #000000 !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.2s !important;
  display: flex !important;
  flex-direction: column !important;
}

.course-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.course-image-container {
  width: 100% !important;
  height: 220px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}


.course-image {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  position: relative !important;
  z-index: 1 !important;
}

.course-card-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  flex: 1 !important;
  background: #000000 !important;
  background-color: #000000 !important;
}

.product-tags {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.product-tag {
  padding: 0.25rem 0.75rem !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 20px !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  white-space: nowrap !important;
}

.course-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.course-info {
  flex: 1 !important;
}

.course-title {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.5 !important;
  margin: 0.5rem 0 1rem 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.course-price {
  margin-top: auto !important;
  padding-top: 0.5rem !important;
}

.price-value {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.view-course-btn {
  width: 100% !important;
  padding: 0.875rem !important;
  background: #ef4444 !important;
  background-color: #ef4444 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  margin-top: 1.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.view-course-btn:hover {
  background: #dc2626 !important;
  background-color: #dc2626 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.section-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.view-all-link {
  color: #a5b4fc !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  transition: all 0.2s !important;
}

.view-all-link:hover {
  color: #ffffff !important;
}

/* =====================================================
   LOADING & EMPTY STATES
   ===================================================== */
.courses-loading-shimmer {
  padding: 2.5rem 0 !important;
  background: transparent !important;
}

.no-courses-text {
  text-align: center !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 3.75rem 1.25rem !important;
  grid-column: 1 / -1 !important;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1280px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .subscription-sidebar .plan-content {
    grid-template-columns: auto auto 1fr !important;
    gap: 1.5rem !important;
  }
  
  .subscription-sidebar .buy-plan-btn {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin-top: 1rem !important;
  }
  
  .subscription-sidebar .plan-description {
    grid-row: 3 !important;
  }
}

@media (max-width: 768px) {
  .subscription-page .container {
    padding: 1rem !important;
  }
  
  .subscription-tabs-row {
    gap: 0.5rem !important;
  }
  
  .subscription-tabs-row .tab {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
  }
  
  .subscription-sidebar .plan-content {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .subscription-sidebar .plan-pricing,
  .subscription-sidebar .courses-included {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-bottom: 1rem !important;
  }
  
  .subscription-sidebar .plan-pricing {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  
  .subscription-sidebar .courses-included {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  
  .subscription-sidebar .plan-categories {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }
  
  .subscription-sidebar .buy-plan-btn {
    grid-column: 1 !important;
    grid-row: 4 !important;
    width: 100% !important;
  }
  
  .subscription-sidebar .plan-description {
    grid-column: 1 !important;
    grid-row: 5 !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  .subscription-filters-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .search-container {
    width: 100% !important;
  }
  
  .filter-dropdowns {
    width: 100% !important;
    flex-direction: column !important;
  }
  
  .dropdown-select {
    width: 100% !important;
  }
  
  .courses-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* =====================================================
   MODAL STYLES - Updated to match theme
   ===================================================== */
.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.75) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  padding: 1.25rem !important;
}

.modal-content {
  background: #1a1a1a !important;
  border: none !important;
  border-radius: 24px !important;
  max-width: 640px !important;
  width: 100% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  color: #ffffff !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4) !important;
}.header-subsection {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: rgba(15, 17, 20, 0.98); /* Dark background with slight transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  margin: 0 !important;
}

.header-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  gap: var(--space-4);
}

.logo {
  height: 2.25rem;
  max-width: 7rem;
  width: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1); /* Make logo white */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-grow: 1;
}


.navigation-menu {
  display: flex;
  justify-content: center;
}

.login-menu {
  display: flex;
  position: absolute;
  right: var(--space-6);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  border-radius: var(--radius-md);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Active state with underline */
.nav-link.active {
  color: rgba(255, 255, 255, 1);
  font-weight: var(--font-medium);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
}

.nav-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: inherit;
}

/* Login button styled as pill */
.login-link {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5) !important;
  transition: all var(--transition-base);
}

.login-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.login-link .nav-text {
  font-weight: var(--font-medium);
  color: #ffffff;
}

/* Focus states for accessibility - 4.5:1 contrast ratio */
.nav-link:focus-visible {
  outline: 2px solid #66a3ff;
  outline-offset: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}

.login-link:focus-visible {
  outline: 2px solid #66a3ff;
  outline-offset: 2px;
}

.separator {
  display: none; /* Hide separator in new design */
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.mobile-menu-button:hover {
  color: rgba(255, 255, 255, 1);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(15, 17, 20, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4);
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-navigation-menu,
.mobile-login-menu {
  display: flex;
  width: 100%;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav-item {
  display: flex;
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav-link.active {
  color: rgba(255, 255, 255, 1);
  font-weight: var(--font-medium);
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: inherit;
}

.mobile-login-link {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.mobile-login-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-login-link .mobile-nav-text {
  font-weight: var(--font-medium);
  color: #ffffff;
}

.mobile-separator {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: var(--space-3) 0;
}

@media (max-width: 768px) {
  .header-content {
    padding: var(--space-3) var(--space-4);
    position: relative;
  }
  
  .logo {
    height: 1.75rem;
    max-width: 5rem;
  }
  
  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-button {
    display: block;
  }
  
  /* Show mobile navigation when open */
  .mobile-nav {
    display: block;
  }
  
  .nav-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: var(--space-2) var(--space-3);
  }
  
  .logo {
    height: 1.5rem;
    max-width: 4.5rem;
  }
  
  .mobile-nav {
    padding: var(--space-3);
  }
  
  .mobile-nav-link {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
  }
  
  .mobile-nav-text {
    font-size: var(--text-sm);
  }
} /* Footer Section - Rounded Slab */
.footer-section {
  width: 100%;
  background-color: var(--color-dark-900);
  padding: var(--space-16) 0;
}
 
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-8);
  background-color: #1a1a1a;
  border-radius: var(--radius-3xl);
  box-sizing: border-box;
}
 
/* Main Footer Content - Two Columns */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-10);
}
 
/* Left Column - Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
 
.footer-logo {
  height: 2.5rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
 
.footer-description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 520px;
}
 
/* Social Links */
.footer-social-links {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-2);
}
 
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
 
.footer-social-link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
 
.footer-social-icon {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.2s ease;
  -o-object-fit: contain;
     object-fit: contain;
  /* Icons should be white/light colored by default - no filter needed */
}
 
.footer-social-link:hover .footer-social-icon {
  transform: scale(1.1);
}
 
.footer-social-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
 
.footer-social-link:active {
  transform: translateY(0);
}
 
/* Right Column - Quick Links Section */
.footer-links-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
 
.footer-heading {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}
 
/* Two Columns of Links */
.footer-links-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
 
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
 
.footer-link {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: var(--leading-normal);
}
 
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
 
.footer-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
 
/* Copyright Divider Row */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
 
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}
 
.footer-copyright {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}
 
/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: var(--space-10) var(--space-6);
  }
 
  .footer-main {
    gap: var(--space-12);
  }
 
  .footer-description {
    font-size: var(--text-sm);
  }
 
  .footer-link {
    font-size: var(--text-sm);
  }
}
 
@media (max-width: 768px) {
  .footer-section {
    padding: var(--space-12) var(--space-4);
  }
 
  .footer-container {
    padding: var(--space-8) var(--space-5);
    border-radius: var(--radius-2xl);
  }
 
  /* Stack Main Content on Mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
 
  .footer-brand {
    text-align: left;
  }
 
  .footer-logo {
    height: 2rem;
  }
 
  .footer-description {
    max-width: 100%;
  }
 
  /* Social Icons - Mobile */
  .footer-social-links {
    gap: var(--space-3);
  }
 
  .footer-social-icon {
    width: 24px;
    height: 24px;
  }
 
  /* Keep Links in Two Columns on Mobile */
  .footer-links-columns {
    gap: var(--space-6);
  }
 
  .footer-heading {
    font-size: var(--text-base);
  }
}
 
@media (max-width: 480px) {
  .footer-section {
    padding: var(--space-8) var(--space-3);
  }
 
  .footer-container {
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-xl);
  }
 
  .footer-main {
    gap: var(--space-8);
  }
 
  .footer-brand {
    gap: var(--space-4);
  }
 
  .footer-logo {
    height: 1.75rem;
  }
 
  .footer-description {
    font-size: var(--text-xs);
    line-height: var(--leading-relaxed);
  }
 
  /* Social Icons - Small Mobile */
  .footer-social-links {
    gap: var(--space-2);
    margin-top: var(--space-3);
  }
 
  .footer-social-icon {
    width: 20px;
    height: 20px;
  }
 
  /* Stack Links on Small Mobile */
  .footer-links-columns {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
 
  .footer-links-column {
    gap: var(--space-2);
  }
 
  .footer-link {
    font-size: var(--text-xs);
  }
 
  .footer-heading {
    font-size: var(--text-sm);
  }
 
  .footer-bottom {
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
 
  .footer-copyright {
    font-size: var(--text-xs);
  }
}
 
/* Additional Hover States */
.footer-brand:hover .footer-logo {
  opacity: 0.9;
}
 
/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
  .footer-link {
    color: #ffffff;
  }
 
  .footer-divider {
    background-color: rgba(255, 255, 255, 0.3);
  }
 
  .footer-description,
  .footer-copyright {
    color: rgba(255, 255, 255, 0.95);
  }
}
 
/* Print Styles */
@media print {
  .footer-section {
    background-color: transparent;
    padding: var(--space-8) 0;
  }
 
  .footer-container {
    background-color: transparent;
    border: 1px solid #000;
  }
 
  .footer-link {
    color: #000;
  }
 
  .footer-description,
  .footer-heading,
  .footer-copyright {
    color: #000;
  }
 
  .footer-logo {
    filter: none;
  }
}/* Spinner.css */

.spinner-border img {
  cursor: var(--slider-arrow-color) !important;
}

.gif .spinner-border {
  width: 100px;
  height: 100%;
  margin: auto;
  display: grid;
  place-items: center;
}

.spinner-border {
  border: none !important;
  --bs-spinner-animation-name: none !important;
}
/* Course Detail Page - Pixel-Perfect Implementation */

.course-detail-page-wrapper {
  background: #1a1a1a;
  min-height: 100vh;
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  padding-bottom: 100px;
}

.course-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* ========== Hero Banner ========== */
.course-hero-banner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 24px 0 0 0;
  position: relative;
  align-items: start;
}

.course-hero-left {
  max-width: 720px;
}

.course-hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  padding: 24px;
  border-radius: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.course-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  font-size: 18px;
}

.star-filled {
  color: #fbbf24;
}

.star-empty {
  color: #d1d5db;
}

.rating-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.rating-count {
  font-size: 14px;
  color: #9ca3af;
}

.course-hero-enrolled {
  font-size: 14px;
  color: #9ca3af;
}

.enrolled-count {
  font-weight: 500;
}

.course-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  background: #2d2d2d;
  color: #d1d5db;
  padding: 20px 24px;
  border-radius: 0 0 20px 20px;
  margin-top: -20px;
}

/* ========== Sidebar (Normal Flow) ========== */
.course-sidebar {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.course-sidebar-card {
  background: #2d2d2d;
  border: 1px solid #404040;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.course-poster {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #1a1a1a;
}

.course-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.course-pricing-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #404040;
}

.pricing-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.plan-availability {
  font-size: 14px;
  color: #9ca3af;
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.course-share-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #404040;
}

.share-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.share-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 20px;
}

.share-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-icon-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.share-icon-facebook { background: #1877f2; color: #ffffff; }
.share-icon-twitter { background: #000000; color: #ffffff; }
.share-icon-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #ffffff; }
.share-icon-linkedin { background: #0077b5; color: #ffffff; }
.share-icon-whatsapp { background: #25d366; color: #ffffff; }
.share-icon-gmail { background: #ea4335; color: #ffffff; }

.course-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-buy-now,
.btn-wishlist {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-buy-now {
  background: #ef4444;
  color: #ffffff;
}

.btn-buy-now:hover {
  background: #dc2626;
}

.btn-wishlist {
  background: transparent;
  color: #ffffff;
  border: 1px solid #d1d5db;
}

.btn-wishlist:hover {
  background: #353535;
  border-color: #9ca3af;
}

.btn-buy-now:focus-visible,
.btn-wishlist:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* ========== Section Base Styles ========== */
.course-section {
  padding: 32px 0;
  border-bottom: 1px solid #404040;
  max-width: 752px;
}

.course-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
}

/* ========== About the Course ========== */
.course-about-section {
  padding: 0 0 32px 0 !important;
  margin-top: -88px;
}

.course-overview {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0 0 24px 0;
}

.course-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.course-badge {
  background: #2d2d2d;
  border: 1px solid #404040;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.badge-label {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* ========== Course Content Accordion ========== */
.course-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #2d2d2d;
  border: 1px solid #404040;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #2d2d2d;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: #353535;
}

.accordion-header:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}

.accordion-title-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-title-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.accordion-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.accordion-meta {
  font-size: 14px;
  color: #9ca3af;
  white-space: nowrap;
}

.accordion-chevron {
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-chevron.expanded {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 24px;
  background: #242424;
}

.accordion-description {
  font-size: 15px;
  line-height: 1.7;
  color: #9ca3af;
  margin: 0 0 24px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #3a3a3a;
}

.accordion-sessions-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.accordion-lessons-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-lesson {
  padding: 16px 0;
  border-top: 1px solid #3a3a3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-lesson:first-child {
  border-top: none;
}

.lesson-title {
  font-size: 16px;
  color: #e5e7eb;
  font-weight: 500;
  flex: 1;
}

.lesson-meta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lesson-datetime {
  font-size: 14px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-icon {
  font-size: 16px;
}

.lesson-live-tag {
  background: #ef4444;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-icon {
  font-size: 12px;
}

.lesson-type {
  font-size: 14px;
  color: #9ca3af;
}

.no-content-message {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  padding: 32px;
}

/* ========== What You'll Learn ========== */
.course-outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outcome-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-bar {
  width: 100%;
  height: 48px;
  background: #404040;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.outcome-bar-fill {
  display: none;
}

.outcome-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

/* ========== Skills Chips ========== */
.course-skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-chip {
  background: #2d2d2d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #404040;
  transition: all 0.2s;
}

.skill-chip:hover {
  background: #353535;
  border-color: #505050;
}

/* ========== Learner Reviews ========== */
.reviews-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #404040;
}

.reviews-summary-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-rating-large {
  text-align: center;
}

.rating-number {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.rating-label {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.rating-stars-large {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
}

.reviews-summary-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-histogram {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.histogram-row {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  align-items: center;
  gap: 16px;
}

.histogram-label {
  font-size: 14px;
  color: #9ca3af;
  text-align: right;
}

.histogram-bar-bg {
  height: 12px;
  background: #404040;
  border-radius: 6px;
  overflow: hidden;
}

.histogram-bar-fill {
  height: 100%;
  background: #ef4444;
  border-radius: 6px;
  transition: width 0.4s ease-out;
}

.histogram-count {
  font-size: 14px;
  color: #9ca3af;
  text-align: right;
}

.reviews-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-filter,
.reviews-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-filter label,
.reviews-sort label {
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
}

.filter-dropdown,
.sort-dropdown {
  min-width: 180px;
  padding: 10px 16px;
  border: 1px solid #404040;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  background: #2d2d2d;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-dropdown:hover,
.sort-dropdown:hover {
  border-color: #505050;
}

.filter-dropdown:focus,
.sort-dropdown:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: #2d2d2d;
  border: 1px solid #404040;
  border-radius: 16px;
  padding: 24px;
}

.review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-stars {
  display: flex;
  gap: 2px;
  font-size: 14px;
}

.review-date {
  font-size: 14px;
  color: #9ca3af;
}

.review-body {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

.no-reviews-message {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  padding: 48px 24px;
}

/* ========== Related Courses ========== */
.related-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  padding: 48px 24px;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .course-hero-banner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .course-section {
    max-width: 100%;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .related-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .course-detail-container {
    padding: 0 12px;
  }

  .course-hero-banner {
    padding: 20px 0 0;
    gap: 24px;
  }

  .course-hero-title {
    font-size: 32px;
    padding: 20px;
  }

  .course-hero-desc {
    font-size: 16px;
    padding: 16px 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .course-section {
    padding: 24px 0;
  }

  .course-badges {
    flex-direction: column;
    gap: 16px;
  }

  .course-badge {
    width: 100%;
  }

  .accordion-title {
    font-size: 18px;
  }

  .accordion-meta {
    font-size: 13px;
  }

  .reviews-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-filter,
  .reviews-sort {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-dropdown,
  .sort-dropdown {
    width: 100%;
  }

  .related-courses-grid {
    grid-template-columns: 1fr;
  }

  .rating-number {
    font-size: 48px;
  }

  .histogram-row {
    grid-template-columns: 50px 1fr 40px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .course-hero-title {
    font-size: 24px;
    padding: 16px;
  }

  .share-icons {
    justify-content: center;
  }

  .plan-price {
    font-size: 28px;
  }

  .accordion-lesson {
    flex-direction: column;
    align-items: flex-start;
  }

  .lesson-meta-group {
    width: 100%;
  }

  .lesson-datetime {
    white-space: normal;
  }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', 'Helvetica', sans-serif;
  }

  #app {
    width: 100%;
    overflow-x: hidden;
  }
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
    padding-right: 6rem;
    padding-left: 6rem;
  }
}
.btn {
  border-radius: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.btn-primary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.btn-outline {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.btn-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-outline:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.btn-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}
.btn-secondary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}
.input-field {
  width: 100%;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.input-field:focus {
  border-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.card {
  overflow: hidden;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.section-title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.container-custom {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {

  .container-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {

  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-bottom-6 {
  bottom: -1.5rem;
}
.-left-6 {
  left: -1.5rem;
}
.left-0 {
  left: 0px;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-4 {
  top: 1rem;
}
.z-50 {
  z-index: 50;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-ml-6 {
  margin-left: -1.5rem;
}
.-mt-3\.5 {
  margin-top: -0.875rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.size-20 {
  width: 5rem;
  height: 5rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-96 {
  height: 24rem;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.translate-y-6 {
  --tw-translate-y: 1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-8 {
  --tw-translate-y: 2rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.resize-none {
  resize: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-12 {
  row-gap: 3rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-secondary-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-secondary-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-secondary-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-gray-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1));
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-secondary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-secondary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-secondary-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-gray-950 {
  --tw-gradient-from: #030712 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(3 7 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-600 {
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-600\/80 {
  --tw-gradient-from: rgb(37 99 235 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-gray-900 {
  --tw-gradient-to: #111827 var(--tw-gradient-to-position);
}
.to-secondary-700 {
  --tw-gradient-to: #334155 var(--tw-gradient-to-position);
}
.to-secondary-700\/80 {
  --tw-gradient-to: rgb(51 65 85 / 0.8) var(--tw-gradient-to-position);
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-top {
  -o-object-position: top;
     object-position: top;
}
.p-0 {
  padding: 0px;
}
.p-0\.5 {
  padding: 0.125rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-secondary-100 {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}
.text-secondary-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.text-secondary-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-secondary-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-secondary-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-secondary-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-secondary-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-secondary-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.line-through {
  text-decoration-line: line-through;
}
.opacity-0 {
  opacity: 0;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-zinc-950\/5 {
  --tw-shadow-color: rgb(9 9 11 / 0.05);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.text-gradient {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #475569 var(--tw-gradient-to-position);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* Custom base styles */

/* Custom component styles */

/* Custom utility styles */

.container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem !important;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-subsection {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .product-title {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 20px !important;
    height: auto !important;
    min-height: 500px !important;
  }
  
  .hero-content {
    gap: 40px !important;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.25rem !important;
  }
  
  .btn {
    height: 60px !important;
    padding: 15px 30px !important;
    font-size: 1.125rem !important;
  }
}

@media (max-width: 768px) {
  .header-subsection {
    padding: 15px 20px !important;
  }
  
  .nav-list {
    gap: 15px !important;
  }
  
  .hero-section {
    padding: 40px 15px !important;
    min-height: 400px !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .btn {
    width: 100% !important;
  }
  
  .products-grid {
    flex-direction: column !important;
  }
  
  .product-card {
    min-width: 100% !important;
  }
  
  .profile-image {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
  }
  
  .testimonials-grid {
    flex-direction: column !important;
  }
  
  .footer-subsection {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 20px !important;
    text-align: center !important;
  }
}

.modal-tabs .tab.inactive:first-child{
  color: #66BB6A !important;
  border-radius: unset !important;
  border-top-right-radius: 0.6vw !important;
  border-bottom-right-radius: 0.6vw !important;
  position: static !important;
  z-index: 99 !important;
  border : 1px solid #66BB6A !important;
}

.tab.active{
  margin-left: -7px !important;
}

.hover\:bg-blue-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:text-primary-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.hover\:text-secondary-600:hover {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:grayscale-0:hover {
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}

.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:hover .group-hover\:h-\[22\.5rem\] {
  height: 22.5rem;
}

.group:hover .group-hover\:translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rounded-xl {
  border-radius: 0.75rem;
}

.group:hover .group-hover\:tracking-wider {
  letter-spacing: 0.05em;
}

.group:hover .group-hover\:text-primary-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

@media (min-width: 640px) {

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:w-4\/5 {
    width: 80%;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:pb-0 {
    padding-bottom: 0px;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 768px) {

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}/* Design Tokens - Marketing Page Design System */

:root {
  /* ===== Color Palette ===== */
  
  /* Primary Colors */
  --color-primary-50: #e6f0ff;
  --color-primary-100: #cce0ff;
  --color-primary-200: #99c2ff;
  --color-primary-300: #66a3ff;
  --color-primary-400: #3385ff;
  --color-primary-500: #0066ff;
  --color-primary-600: #0052cc;
  --color-primary-700: #003d99;
  --color-primary-800: #002966;
  --color-primary-900: #001433;
  
  /* Dark Palette */
  --color-dark-50: #f7f8f9;
  --color-dark-100: #e9ecef;
  --color-dark-200: #dee2e6;
  --color-dark-300: #ced4da;
  --color-dark-400: #adb5bd;
  --color-dark-500: #6c757d;
  --color-dark-600: #495057;
  --color-dark-700: #343a40;
  --color-dark-800: #212529;
  --color-dark-900: #0f1114;
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f3f4f6;
  --bg-dark: var(--color-dark-800);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  
  /* ===== Text Colors ===== */
  --text-primary: var(--color-dark-800);
  --text-secondary: var(--color-dark-600);
  --text-tertiary: var(--color-dark-500);
  --text-muted: var(--color-dark-400);
  --text-inverse: #ffffff;
  --text-link: var(--color-primary-600);
  --text-link-hover: var(--color-primary-700);
  
  /* ===== Border Colors ===== */
  --border-light: #e5e7eb;
  --border-default: #d1d5db;
  --border-dark: #9ca3af;
  --border-focus: var(--color-primary-500);
  --border-error: var(--color-error);
  --border-success: var(--color-success);
  
  /* ===== Border Radius ===== */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  --radius-card: var(--radius-lg);
  --radius-button: var(--radius-md);
  --radius-input: var(--radius-md);
  
  /* ===== Elevations (Box Shadows) ===== */
  --elevation-none: none;
  --elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --elevation-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --elevation-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --elevation-card: var(--elevation-md);
  --elevation-dropdown: var(--elevation-lg);
  --elevation-modal: var(--elevation-2xl);
  
  /* ===== Container ===== */
  --container-max-width: 1200px;
  --container-padding: 1rem;
  --container-padding-lg: 2rem;
  
  /* ===== Spacing Scale ===== */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-7: 1.75rem;   /* 28px */
  --space-8: 2rem;      /* 32px */
  --space-9: 2.25rem;   /* 36px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-14: 3.5rem;   /* 56px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  
  /* Section Spacing */
  --section-padding-y: var(--space-16);
  --section-padding-y-mobile: var(--space-12);
  
  /* ===== Typography Scale ===== */
  
  /* Font Families */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  
  /* Heading Sizes */
  --h1-size: 2.5rem;      /* 40px */
  --h1-size-mobile: 2rem; /* 32px */
  --h2-size: 2rem;        /* 32px */
  --h2-size-mobile: 1.75rem; /* 28px */
  --h3-size: 1.5rem;      /* 24px */
  --h3-size-mobile: 1.25rem; /* 20px */
  
  /* Body Text */
  --body-size: var(--text-base);
  --body-size-sm: var(--text-sm);
  --body-size-lg: var(--text-lg);
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Letter Spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  
  /* ===== Transitions ===== */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --transition-slower: 500ms ease-in-out;
  
  /* ===== Z-Index Scale ===== */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-notification: 800;
  
  /* ===== Breakpoints ===== */
  --breakpoint-xs: 320px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;
  --breakpoint-2xl: 1440px;
}

/* Dark Mode Overrides (optional - for future implementation) */
@media (prefers-color-scheme: dark) {
  :root.dark-mode {
    --bg-primary: var(--color-dark-900);
    --bg-secondary: var(--color-dark-800);
    --bg-tertiary: var(--color-dark-700);
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-tertiary: #d1d5db;
    --text-muted: #9ca3af;
    --border-light: var(--color-dark-700);
    --border-default: var(--color-dark-600);
    --border-dark: var(--color-dark-500);
  }
}
/* Base Utilities - Marketing Page */

/* Import design tokens */

/* Design Tokens - Marketing Page Design System */

:root {
  /* ===== Color Palette ===== */
  
  /* Primary Colors */
  --color-primary-50: #e6f0ff;
  --color-primary-100: #cce0ff;
  --color-primary-200: #99c2ff;
  --color-primary-300: #66a3ff;
  --color-primary-400: #3385ff;
  --color-primary-500: #0066ff;
  --color-primary-600: #0052cc;
  --color-primary-700: #003d99;
  --color-primary-800: #002966;
  --color-primary-900: #001433;
  
  /* Dark Palette */
  --color-dark-50: #f7f8f9;
  --color-dark-100: #e9ecef;
  --color-dark-200: #dee2e6;
  --color-dark-300: #ced4da;
  --color-dark-400: #adb5bd;
  --color-dark-500: #6c757d;
  --color-dark-600: #495057;
  --color-dark-700: #343a40;
  --color-dark-800: #212529;
  --color-dark-900: #0f1114;
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f3f4f6;
  --bg-dark: var(--color-dark-800);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  
  /* ===== Text Colors ===== */
  --text-primary: var(--color-dark-800);
  --text-secondary: var(--color-dark-600);
  --text-tertiary: var(--color-dark-500);
  --text-muted: var(--color-dark-400);
  --text-inverse: #ffffff;
  --text-link: var(--color-primary-600);
  --text-link-hover: var(--color-primary-700);
  
  /* ===== Border Colors ===== */
  --border-light: #e5e7eb;
  --border-default: #d1d5db;
  --border-dark: #9ca3af;
  --border-focus: var(--color-primary-500);
  --border-error: var(--color-error);
  --border-success: var(--color-success);
  
  /* ===== Border Radius ===== */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  --radius-card: var(--radius-lg);
  --radius-button: var(--radius-md);
  --radius-input: var(--radius-md);
  
  /* ===== Elevations (Box Shadows) ===== */
  --elevation-none: none;
  --elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --elevation-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --elevation-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --elevation-card: var(--elevation-md);
  --elevation-dropdown: var(--elevation-lg);
  --elevation-modal: var(--elevation-2xl);
  
  /* ===== Container ===== */
  --container-max-width: 1200px;
  --container-padding: 1rem;
  --container-padding-lg: 2rem;
  
  /* ===== Spacing Scale ===== */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-7: 1.75rem;   /* 28px */
  --space-8: 2rem;      /* 32px */
  --space-9: 2.25rem;   /* 36px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-14: 3.5rem;   /* 56px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  
  /* Section Spacing */
  --section-padding-y: var(--space-16);
  --section-padding-y-mobile: var(--space-12);
  
  /* ===== Typography Scale ===== */
  
  /* Font Families */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  
  /* Heading Sizes */
  --h1-size: 2.5rem;      /* 40px */
  --h1-size-mobile: 2rem; /* 32px */
  --h2-size: 2rem;        /* 32px */
  --h2-size-mobile: 1.75rem; /* 28px */
  --h3-size: 1.5rem;      /* 24px */
  --h3-size-mobile: 1.25rem; /* 20px */
  
  /* Body Text */
  --body-size: var(--text-base);
  --body-size-sm: var(--text-sm);
  --body-size-lg: var(--text-lg);
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Letter Spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  
  /* ===== Transitions ===== */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --transition-slower: 500ms ease-in-out;
  
  /* ===== Z-Index Scale ===== */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-notification: 800;
  
  /* ===== Breakpoints ===== */
  --breakpoint-xs: 320px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;
  --breakpoint-2xl: 1440px;
}

/* Dark Mode Overrides (optional - for future implementation) */

@media (prefers-color-scheme: dark) {
  :root.dark-mode {
    --bg-primary: var(--color-dark-900);
    --bg-secondary: var(--color-dark-800);
    --bg-tertiary: var(--color-dark-700);
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-tertiary: #d1d5db;
    --text-muted: #9ca3af;
    --border-light: var(--color-dark-700);
    --border-default: var(--color-dark-600);
    --border-dark: var(--color-dark-500);
  }
}

/* ===== Reset & Base Styles ===== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-primary);
  font-size: var(--body-size);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* ===== Container ===== */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--container-padding-lg);
    padding-right: var(--container-padding-lg);
  }
}

/* ===== Section ===== */

.section {
  padding-top: var(--section-padding-y-mobile);
  padding-bottom: var(--section-padding-y-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
  }
}

/* ===== Grid Utilities ===== */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Pill Component ===== */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: var(--leading-tight);
  color: var(--text-secondary);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pill:hover {
  background-color: var(--bg-secondary);
  border-color: var(--border-default);
}

.pill.pill--primary {
  color: var(--text-inverse);
  background-color: var(--color-primary-600);
  border-color: var(--color-primary-600);
}

.pill.pill--primary:hover {
  background-color: var(--color-primary-700);
  border-color: var(--color-primary-700);
}

/* ===== Card Component ===== */

.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--elevation-card);
  transform: translateY(-2px);
}

.card--clickable {
  cursor: pointer;
}

.card--flat {
  border: none;
  box-shadow: none;
}

.card--elevated {
  border: none;
  box-shadow: var(--elevation-md);
}

.card--elevated:hover {
  box-shadow: var(--elevation-lg);
}

/* ===== Shadow Utilities ===== */

.shadow {
  box-shadow: var(--elevation-md);
}

.shadow-sm {
  box-shadow: var(--elevation-sm);
}

.shadow-lg {
  box-shadow: var(--elevation-lg);
}

.shadow-xl {
  box-shadow: var(--elevation-xl);
}

.shadow-2xl {
  box-shadow: var(--elevation-2xl);
}

.shadow-none {
  box-shadow: none;
}

/* ===== Focus Visible Ring ===== */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}

.focus-ring {
  position: relative;
}

.focus-ring:focus-visible::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--color-primary-500);
  border-radius: inherit;
  pointer-events: none;
}

/* ===== Responsive Utilities ===== */

/* Hide on mobile */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on tablet */

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Hide on desktop */

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Show only on mobile */

.show-mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block !important;
  }
}

/* Show only on tablet */

.show-tablet {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .show-tablet {
    display: block !important;
  }
}

/* Show only on desktop */

.show-desktop {
  display: none !important;
}

@media (min-width: 1024px) {
  .show-desktop {
    display: block !important;
  }
}

/* ===== Typography Utilities ===== */

.h1 {
  font-size: var(--h1-size-mobile);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

@media (min-width: 768px) {
  .h1 {
    font-size: var(--h1-size);
  }
}

.h2 {
  font-size: var(--h2-size-mobile);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

@media (min-width: 768px) {
  .h2 {
    font-size: var(--h2-size);
  }
}

.h3 {
  font-size: var(--h3-size-mobile);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
}

@media (min-width: 768px) {
  .h3 {
    font-size: var(--h3-size);
  }
}

.body {
  font-size: var(--body-size);
  line-height: var(--leading-normal);
}

.body-sm {
  font-size: var(--body-size-sm);
  line-height: var(--leading-normal);
}

.body-lg {
  font-size: var(--body-size-lg);
  line-height: var(--leading-relaxed);
}

/* ===== Flex Utilities ===== */

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

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

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

.justify-center {
  justify-content: center;
}

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* ===== Spacing Utilities ===== */

.mt-auto { margin-top: auto; }

.mb-auto { margin-bottom: auto; }

.ml-auto { margin-left: auto; }

.mr-auto { margin-right: auto; }

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

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

.p-0 { padding: var(--space-0); }

.p-2 { padding: var(--space-2); }

.p-4 { padding: var(--space-4); }

.p-6 { padding: var(--space-6); }

.p-8 { padding: var(--space-8); }

.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }

.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }

.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

.mt-0 { margin-top: var(--space-0); }

.mt-2 { margin-top: var(--space-2); }

.mt-4 { margin-top: var(--space-4); }

.mt-6 { margin-top: var(--space-6); }

.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: var(--space-0); }

.mb-2 { margin-bottom: var(--space-2); }

.mb-4 { margin-bottom: var(--space-4); }

.mb-6 { margin-bottom: var(--space-6); }

.mb-8 { margin-bottom: var(--space-8); }

/* ===== Text Utilities ===== */

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

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

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

.text-primary { color: var(--text-primary); }

.text-secondary { color: var(--text-secondary); }

.text-tertiary { color: var(--text-tertiary); }

.text-muted { color: var(--text-muted); }

.font-normal { font-weight: var(--font-normal); }

.font-medium { font-weight: var(--font-medium); }

.font-semibold { font-weight: var(--font-semibold); }

.font-bold { font-weight: var(--font-bold); }

/* ===== Button Base Styles ===== */

button {
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-fast);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Link Styles ===== */

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-link-hover);
}

/* ===== Responsive Breakpoint Classes ===== */

/* 1200px breakpoint */

@media (min-width: 1200px) {
  .xl\:container {
    max-width: var(--container-max-width);
  }
  
  .xl\:grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .xl\:flex-row {
    flex-direction: row;
  }
}

/* 1024px breakpoint */

@media (min-width: 1024px) {
  .lg\:container {
    max-width: 1024px;
  }
  
  .lg\:grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:text-left {
    text-align: left;
  }
}

/* 768px breakpoint */

@media (min-width: 768px) {
  .md\:container {
    max-width: 768px;
  }
  
  .md\:grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:text-left {
    text-align: left;
  }
}

/* ===== Animation Utilities ===== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-base) ease-in-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base) ease-in-out;
}

/* ===== Overflow Utilities ===== */

.overflow-hidden { overflow: hidden; }

.overflow-auto { overflow: auto; }

.overflow-scroll { overflow: scroll; }

.overflow-x-auto { overflow-x: auto; }

.overflow-y-auto { overflow-y: auto; }

/* ===== Position Utilities ===== */

.relative { position: relative; }

.absolute { position: absolute; }

.fixed { position: fixed; }

.sticky { position: sticky; }

/* ===== Display Utilities ===== */

.block { display: block; }

.inline-block { display: inline-block; }

.inline { display: inline; }

.flex { display: flex; }

.inline-flex { display: inline-flex; }

.grid { display: grid; }

.hidden { display: none; }

/* ===== Width Utilities ===== */

.w-full { width: 100%; }

.w-auto { width: auto; }

.max-w-full { max-width: 100%; }

/* ===== Height Utilities ===== */

.h-full { height: 100%; }

.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }
