.hero-section {
  position: relative;
  width: 100%;
  padding: 5.68vw 4.63vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.52vw;
  height: 32.29vw;
  overflow: hidden;
  margin-top: 1.56vw;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-container {
  position: relative;
  height: 100%;
  border-radius: 12px 12px 0 0;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(97deg, rgba(0,0,0,0.6) 0%, rgba(102,102,102,0.6) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 57.14vw;
  align-items: flex-start;
  gap: 4.48vw;
  z-index: 1;
}

.hero-title {
  align-self: stretch;
  font-weight: 600;
  color: white;
  font-size: 3.13vw;
  font-family: 'Inter', Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}

.hero-subsection {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 52.55vw;
  align-items: flex-start;
  gap: 2.29vw;
}

.hero-subtitle {
  align-self: stretch;
  font-weight: 600;
  color: white;
  font-size: 1.25vw;
  font-family: 'Inter', Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
}

.hero-buttons {
  display: inline-flex;
  align-items: center;
  gap: 0.94vw;
  flex-wrap: wrap;
}

.btn {
  height: 4.17vw;
  padding: 1.30vw 2.76vw;
  border-radius: 12px;
  font-size: 1.25vw;
  font-weight: 600;
  font-family: 'Inter', Helvetica, sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero-home-section .btn-primary {
  background-color: #5580ef;
  color: white;
  font-size: 0.95vw !important;
  line-height: normal !important;
  padding: 0.5vw 1.5vw !important;
  height: unset !important;
}

.hero-home-section .btn-primary:hover {
  background-color: #5580ef !important;
  color: #ffffff !important;
  opacity: unset !important;
}

.hero-home-section .btn-outline {
  background-color: white;
  border: 2px solid #5580ef;
  color: #5580ef;
  font-size: 0.95vw !important;
  line-height: normal !important;
  padding: 0.5vw 1.5vw !important;
  height: unset !important;
}

.hero-home-section .btn-outline:hover {
  background-color: #ffffff !important;
   color: #5580ef !important;
   opacity: unset !important;
}

@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 40px;
    height: auto;
    min-height: 500px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
} .products-section {
  width: 100%;
  margin-top: 2.08vw;
  display: flex;
  flex-direction: column;
  gap: 2.08vw;
}

.section-title {
  font-weight: 600;
  color: black;
  font-size: 1.25vw;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.60vw 1.56vw;
  width: 100%;
}

.product-card {
  border: 1px solid #5681ef;
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.04vw; 
  gap: 1.04vw; 
}

.product-image-container {
  width: 100%;
  height: 14.63vw;
  border-radius: 12px;
  overflow: hidden;
}

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

.product-content-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.04vw;
}

.product-tags {
  display: flex;
  gap: 0.63vw;
  flex-wrap: wrap;
}

.product-tag {
  background: #f1f1f1;
  border: 1px solid #5681ef; 
  border-radius: 24px;
  padding: 0.52vw 0.94vw;
  font-size: 0.73vw;
  color: #000;
  /* white-space: nowrap; */
}

.product-info {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: 0.52vw;
}

.product-details {
  flex-grow: 1;
}

.product-title {
  font-size: 0.93vw;
  font-weight: 600;
  margin: 0;
}

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

.price-details {
  display: flex;
  align-items: center;
  gap: 0.52vw;
}

.current-price {
  font-size: 0.93vw;
  font-weight: 600;
}

.card-footer {
  margin-top: auto;
}

.view-course-btn {
  width: 100%;
  padding: 0 !important;
  background-color: transparent;
  color: #5681ef;
  border: 1px solid #5681ef;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.83vw;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-course-btn:hover {
  background-color: unset !important;
  color: #5681ef;
}

.btn-text{
  font-size: 1.25vw;
  color: #5681EF;
  font-weight: 600;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 10px;
  }
  
  .product-image-container {
    width: calc(100% - 20px);
    height: 200px;
    margin: 10px;
  }
  
  .product-info {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 1.125rem;
  }
  
  .view-course-btn {
    height: 60px;
  }
  
  .card-footer {
    margin: 0 10px;
    padding-bottom: 10px;
  }
} .testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.88vw;
  padding: 1.77vw;
  width: 100%;
  overflow-x: hidden;
}

.testimonials-section .section-title {
  align-self: stretch;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: black;
  font-size: 1.25vw;
  margin: 0;
  text-align: left;
}

.testimonials-grid {
  /* display: flex;
  flex-wrap: wrap; */
  align-items: center;
  gap: 1.25vw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-card {
  flex: 1;
  /* min-width: 16.41vw;
  max-width: 16.67vw; */
  border: 1px solid #5580ef;
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  height: 8.3vw;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42vw;
  padding: 0.83vw;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42vw;
  width: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.52vw;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 0.21vw;
  flex-wrap: wrap;
}

.author-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: 0.63vw;
  letter-spacing: 0.007vw;
  line-height: 1.25;
  white-space: nowrap;
}

.author-country {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38);
  font-size: 0.68vw;
  letter-spacing: 0.001vw;
  line-height: 0.94vw; 
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.21vw;
  flex-shrink: 0;
}

.star-icon {
  width: 0.83vw;
  height: 0.83vw;
}

.testimonial-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: 0.83vw;
  letter-spacing: 0.007vw; 
  line-height: 1.25;
  margin: 0;
  word-wrap: break-word;
}

@media (max-width: 1200px) {
  .testimonials-section {
    padding: 20px;
  }
  
  .testimonial-card {
    min-width: 280px;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 15px;
  }
  
  .testimonials-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .author-info {
    width: 100%;
  }
  
  .rating {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 10px;
  }
  
  .card-content {
    padding: 12px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .author-name {
    font-size: 0.7rem;
  }
  
  .author-country {
    font-size: 12px;
  }
} .preview-page .about-us-container{
  padding: 0 !important;
  margin: 2.23vw 3.12vw 0 !important;
  width: unset !important;
  max-width: unset !important;
}
.about-section {
  background-color: #edf0fd;
  padding: 4.16vw 0;
}

.about-section-container {
  display: flex;
  align-items: center;
  gap: 4.16vw;
}

.about-image-wrapper {
  background-color: #fff;
  padding: 0.62vw;
  border-radius: 6px;
  width: 20.52vw;
  height: 20.67vw;
  flex-shrink: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.about-content {
  flex-grow: 1;
  /* max-width: 41.66vw; */
  padding-right: 1.04vw;
}

.about-btn-text{
  font-size: 0.93vw;
  font-weight: 600;
  color: #ffffff;
  background-color: #5681EF;
  padding: 0.83vw 2.60vw;
  border-radius: 12px;
}

.about-title {
  font-size: 1.66vw;
  font-weight: 600;
  margin-bottom: 1.04vw;
  color: #000;
}

.about-description {
  font-size: 0.83vw;
  line-height: 1.6;
  color: #000;
}.preview-page {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.home-page-preview .container{
  max-width: unset;
}

.home-page-preview{
  margin: 0 3.13vw !important;
  width: unset;
}

.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: 2.08vw;
}

.preview-page .container > :first-child {
  margin-top: 0;
} /* 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;
}
.container-custom{
    margin: 0 !important; 
    padding: 2.23vw 3.12vw 0 !important;
    max-width: unset !important;
    /* height: 596px; */
}
.min-h-screen .bg-secondary-50{
    min-height: unset;
}
.contact-right{
    width: 40%;
}

.preview-contact-container .contact-right{
  background-color: #ffffff;
  padding: 2vw 1vw;
}

.preview-contact-container{
    display: flex;
}

.contact-left {
  position: relative;
  min-height: 15.62vw;
  padding: 2.08vw 0 2.08vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
}

.contact-heading {
  font-size: 2.18vw;
  font-weight: 600;
  color: #000000;
  /* margin: 32px 0 16px 0; */
  z-index: 1;
  position: relative;
  padding-bottom: 2.08vw;
}

.contact-description {
  font-size: 0.93vw;
  color: #222;
  max-width: 34.58vw;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

.dot-grid {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.dot-grid-top-left {
  top: 3.9vw;
  left: 0;
  width: 10.67vw;
  height: 6.19vw;
}
.dot-grid-bottom-right {
  bottom: 0;
  right: 14.84vw;
  width: 13.43vw;
  height: 5.72vw;
}

@media (max-width: 600px) {
  .contact-heading {
    font-size: 1.5rem;
    margin: 16px 0 8px 0;
  }
  .contact-description {
    font-size: 0.95rem;
    max-width: 95vw;
  }
  .dot-grid-bottom-right {
    left: 0;
    bottom: -20px;
  }
}.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: 'Inter', Helvetica, sans-serif;
  color: #222222;
}
.about-section {
  display: flex;
  align-items: center;
  gap: 1.88vw;
  padding: 1.77vw;
  width: 100%;
  background-color: #EDF2FD;
  overflow-x: hidden;
}

.profile-card {
  flex-shrink: 0;
  width: 20.52vw;
  height: 20.68vw;
  padding: 0.63vw;
  background-color: white;
  border-radius: 6px;
  border: none;
}

.profile-image-container {
  padding: 0;
}

.profile-image {
  width: 19.27vw;
  height: 19.43vw;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  border-radius: 6px;
}

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

.about-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: black;
  font-size: 0.93vw;
  margin: 0;
}

.about-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: black;
  font-size: 0.83vw;
  line-height: 1.5;
  word-wrap: break-word;
}

@media (max-width: 1200px) {
  .about-section {
    padding: 25px;
    gap: 25px;
  }
  
  .profile-card {
    width: 300px;
    height: 303px;
  }

  .profile-image {
    width: calc(300px - 24px);
    height: calc(303px - 24px);
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .profile-card {
    align-self: center;
    width: 100%;
    max-width: 394px;
    height: auto;
  }
  
  .profile-image {
    width: 100%;
    height: auto;
    aspect-ratio: 370 / 373;
  }
  
  .about-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 15px;
  }
  
  .about-title {
    font-size: 1rem;
  }
  
  .about-description {
    font-size: 0.9rem;
  }
}

/* Wrapper for About Us page */
.aboutus-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 48px; */
  background: #fff;
  padding: 0 0 2.5vw 0;
}

/* Main About Section */
.about-main-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.15vw;
  /* max-width: 1741px; */
  /* margin: 40px auto 0 auto; */
  width: 100%;
  padding-left: 3.12vw;
}
.about-main-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  gap: 24px;
  min-width: 320px;
  max-width: 872px; */
}
.about-main-heading {
  font-size: 3.13vw;
  font-weight: 600;
  margin: 0 0 1.61vw 0;
}
.about-main-subheading {
  font-size: 1.04vw;
  color: #222;
  font-weight: 500;
  margin: 0 0 0.73vw 0;
}
.about-main-description {
  font-size: 1.25vw;
  font-weight: 400;
  margin: 0 0 2.60vw 0;
}
.about-main-buttons {
  display: flex;
  gap: 0.94vw;
}
.about-main-section .btn-primary {
  background-color: #5681EF;
  color: #FFFFFF;
  font-weight: 600;
  margin-right: 0.93vw;
  font-size: 0.95vw !important;
  line-height: normal !important;
  padding: 0.5vw 1.5vw !important;
  height: unset !important;
}
.about-main-section .btn-primary:hover{
  background-color: #5681EF;
}
.about-main-section .btn-secondary{
  font-weight: 600;
  color: #5681EF;
  background-color: #ffffff;
  border: 1px solid #5681EF;
  font-size: 0.95vw !important;
  line-height: normal !important;
  padding: 0.5vw 1.5vw !important;
  height: unset !important;
}

.about-main-section .btn-secondary:hover{
  background-color: unset;
}
.about-main-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16.67vw;
  max-width: 43.39vw;
}

.about-main-image {
  width: 100%;
  max-width: 43.39vw;
  height: 27.08vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eee;
}

/* Stats Section */
.about-stats-section-wrapper {
  background: #EEF2FC;
  border-radius: 12px;
  padding: 2.50vw 3.13vw;
  margin: 2.24vw auto 0 auto;
  max-width: 93.75vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.88vw;
}
.about-stats-header {
  width: 100%;
  max-width: 45.99vw;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.63vw;
}
.about-stats-heading {
  font-size: 1.25vw;
  font-weight: 700;
}
.about-stats-subheading {
  font-size: 0.83vw;
  font-weight: 500;
}
.about-stats-section {
  display: flex;
  justify-content: center;
  gap: 1.25vw;
  width: 100%;
  max-width: 87.5vw;
  margin: 0 auto;
}
.about-stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  padding: 1.30vw 1.67vw;
  min-width: 10.42vw;
  min-height: 5.78vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.63vw;
  border: 1px solid #e0e0e0; 
  flex: 1;
}
.about-stat-number {
  font-size: 1.15vw;
  font-weight: 600;
}
.about-stat-description {
  font-size: 0.93vw;
  font-weight: 400;
}

/* Instructors Section */
.about-instructors-section {
  display: flex;
  justify-content: center;
  gap: 4.53vw;
  width: 100%;
  max-width: 84.17vw;
  margin: 0 auto;
}
.about-instructor-card {
  background: #eef2fc;
  border-radius: 12px;
  border: 1px solid #000;
  padding: 1.67vw 1.25vw;
  width: 25.00vw;
  min-height: 26.20vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.19vw;
}
.about-instructor-image {
  width: 100%;
  max-width: 21.67vw;
  height: 16.30vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eee;
}
.about-instructor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.63vw;
}
.about-instructor-name {
  font-size: 0.93vw;
  font-weight: 600;
  color: #222;
}
.about-instructor-bio {
  font-size: 0.83vw;
  color: #000;
  font-weight: 400;
}

/* Buttons (reuse global styles if available) */
.btn {
  height: 3.13vw;
  padding: 0.78vw 2.08vw;
  border-radius: 12px;
  font-size: 1.04vw;
  font-weight: 600;
  font-family: 'Inter', Helvetica, sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background-color: #5580ef;
  color: white;
}
.btn-primary:hover {
  background-color: #4a6fd8;
}
.btn-outline {
  background-color: white;
  border: 2px solid #5580ef;
  color: #5580ef;
}
.btn-outline:hover {
  background-color: #f8f9ff;
}

@media (max-width: 1200px) {
  .about-main-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .about-main-left, .about-main-right {
    max-width: 100%;
    min-width: 0;
  }
  .about-main-image {
    max-width: 100%;
    height: auto;
  }
  .about-stats-section-wrapper {
    padding: 32px 20px 24px 20px;
  }
  .about-stats-header {
    margin-left: 0;
    max-width: 100%;
  }
  .about-stats-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .about-instructors-section {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .about-instructor-card {
    width: 100%;
    max-width: 480px;
  }
  .about-main-heading {
    font-size: 1.5rem;
  }
  .about-main-subheading {
    font-size: 1.1rem;
  }
  .about-main-description {
    font-size: 0.95rem;
  }
  .about-stat-number {
    font-size: 1.1rem;
  }
  .about-instructor-name {
    font-size: 1rem;
  }
  .about-stats-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .about-stat-card {
    width: 100%;
    max-width: 480px;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .aboutus-wrapper {
    gap: 24px;
    padding: 0 0 24px 0;
  }
  .about-main-section {
    gap: 16px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .about-main-heading {
    font-size: 1.25rem;
  }
  .about-main-subheading {
    font-size: 1rem;
  }
  .about-main-description {
    font-size: 0.9rem;
  }
  .about-stat-number {
    font-size: 1rem;
  }
  .about-instructor-name {
    font-size: 0.95rem;
  }
  .btn {
    height: 48px;
    padding: 10px 20px;
    font-size: 1rem;
  }
  .about-stats-section-wrapper {
    padding: 18px 10px 12px 10px;
    gap: 18px;
  }
  .about-stats-header {
    gap: 8px;
  }
  .about-stats-heading {
    font-size: 1.25rem;
  }
  .about-stats-subheading {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-main-section {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .about-main-heading {
    font-size: 1.1rem;
  }
  .about-main-subheading {
    font-size: 0.95rem;
  }
  .about-main-description {
    font-size: 0.85rem;
  }
  .about-instructor-card {
    padding: 16px 8px;
  }
}

.about-mission-section {
  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;
}
.about-mission-left {
  /* flex: 2; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25vw;
}
.about-mission-heading {
  font-size: 1.25vw;
  font-weight: 600;
}
.about-mission-subheading {
  font-size: 0.93vw;
  font-weight: 400;
}
.about-mission-right {
  /* flex: 1; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about-mission-image {
  width: 100%;
  max-width: 22.92vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eee;
}
@media (max-width: 1200px) {
  .about-mission-section {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
  }
  .about-mission-image {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .about-mission-section {
    padding: 0 10px;
    gap: 10px;
  }
  .about-mission-heading {
    font-size: 1.25rem;
  }
  .about-mission-subheading {
    font-size: 1rem;
  }
}

.about-vision-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #EEF2FC;
  border-radius: 12px;
  margin: 2.24vw 0 0;
  padding: 2.50vw 3.13vw;
  gap: 1.25vw;
}
.about-vision-left {
  /* flex: 1; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* padding-right: 24px; */
}
.about-vision-image {
  width: 100%;
  max-width: 20.89vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eee;
}
.about-vision-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25vw;
}
.about-vision-heading {
  font-size: 1.25vw;
  font-weight: 600;
  /* margin-bottom: 0.63vw; */
}
.about-vision-subheading {
  font-size: 0.93vw;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .about-vision-section {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }
  .about-vision-left {
    padding-right: 0;
  }
  .about-vision-image {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .about-vision-section {
    padding: 12px 10px;
    gap: 10px;
  }
  .about-vision-heading {
    font-size: 1.25rem;
  }
  .about-vision-subheading {
    font-size: 1rem;
  }
}

/* Team Section */
.team-section {
  background: #fafdff;
  border-radius: 12px;
  /* max-width: 1800px;
  margin: 0 auto; */
  padding: 2.24vw 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 3.70vw;
}
.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.30vw;
  max-width: 34.64vw;
  margin: 0 auto;
}
.team-heading {
  font-size: 1.25vw;
  font-weight: 600;
  text-align: center;
}
.team-subheading {
  font-size: 0.83vw;
  text-align: center;
}
.team-cards-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 4.53vw;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 84.17vw;
  margin: 0 auto;
}
.team-card {
  background: #EEF2FC;
  border: 1px solid #000;
  border-radius: 12px;
  width: 25.00vw;
  min-width: 14.58vw;
  max-width: 25.00vw;
  /* height: 503px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.19vw;
  box-sizing: border-box;
  padding: 1.67vw 0 1.67vw 0;
}
.team-card-image {
  width: 21.67vw;
  height: 16.30vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background: #eee;
}
.team-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.63vw;
  width: 13.65vw;
}
.team-card-name {
  font-size: 1.04vw;
  font-weight: 600;
  text-align: center;
}
.team-card-bio {
  font-size: 1.04vw;
  text-align: center;
}

@media (max-width: 1400px) {
  .team-cards-row {
    gap: 40px;
    max-width: 100%;
  }
  .team-card {
    width: 350px;
    max-width: 350px;
    height: 420px;
  }
  .team-card-image {
    width: 300px;
    height: 220px;
  }
}
@media (max-width: 1000px) {
  .team-cards-row {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .team-card {
    width: 90vw;
    max-width: 400px;
    height: auto;
    padding: 24px 0 24px 0;
  }
  .team-card-image {
    width: 90%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .team-section {
    padding: 32px 0 32px 0;
    gap: 40px;
  }
  .team-header {
    gap: 16px;
    padding: 0 10px;
  }
  .team-heading {
    font-size: 1.25rem;
  }
  .team-subheading {
    font-size: 1rem;
  }
  .team-card-info {
    width: 90%;
  }
} /* Privacy Policy Page Layout */
.privacy-policy-page {
  /* background: #fafdff; */
  /* min-height: 100vh; */
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  margin: 5.20vw 6.25vw 0 !important;
}

.container {
  width: 100%;
  max-width: 93.75vw;
  padding: 0 0.83vw;
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: unset !important;
  margin: 0 !important;
  padding: 0 !important;
}

.privacy-policy-content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 87.5vw;
  /* margin: 60px auto 60px auto; */
  /* padding-left: 2rem; */
  /* padding-right: 2rem; */
  display: flex;
  flex-direction: column;
  gap: 3.12vw;
}
.privacy-policy-heading {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 2.18vw;
  font-weight: 600;
  color: #000;
  /* margin-bottom: 24px; */
  text-align: left;
}
.privacy-policy-body {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.93vw;
  color: #222;
  line-height: 1.7;
  /* background: #fff; */
  border-radius: 12px;
  /* padding: 36px 32px; */
  /* box-shadow: 0 0 32px 4px rgba(0,0,0,0.04); */
}
.privacy-policy-body ul {
  margin: 0.62vw 0 0.62vw 1.25vw;
  padding: 0;
}
.privacy-policy-body li {
  margin-bottom: 0.41vw;
  font-size: 0.93vw;
}


.ppp-section-paragraph {
  font-size: 1.04vw;
  color: #000;
  line-height: 1.7;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  overflow-x: hidden;
  max-width: 100%;
}

.ppp-section-paragraph p {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.94vw;
}

.ppp-section-paragraph ul {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  padding-left: 1.04vw;
  list-style-type: disc;
  list-style-position: outside;
  margin: 0.94vw 0;
  font-size: 1.04vw;
  font-family: inherit;
}

.ppp-section-paragraph li {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.47vw;
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 0.26vw;
  text-indent: -0.26vw;
  font-size: 1.04vw;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.7;
}

.ppp-section-paragraph ul li::marker {
  color: #000;
  font-size: 1.04vw;
  font-weight: bold;
  font-family: inherit;
}

.ppp-section-paragraph ol {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  padding-left: 1.04vw;
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0.94vw 0;
  font-size: 1.04vw;
  font-family: inherit;
}

.ppp-section-paragraph ol li {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.47vw;
  display: list-item;
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 0.26vw;
  text-indent: -0.26vw;
  font-size: 1.04vw;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .privacy-policy-content {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 32px auto 32px auto;
  }
  .privacy-policy-heading {
    font-size: 2rem;
  }
  .privacy-policy-body {
    padding: 24px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .privacy-policy-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 32px;
  }
  .privacy-policy-heading {
    font-size: 1.5rem;
  }
  .privacy-policy-body {
    padding: 12px 4px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .privacy-policy-content {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    gap: 16px;
  }
  .privacy-policy-heading {
    font-size: 1.1rem;
  }
  .privacy-policy-body {
    padding: 8px 2px;
    font-size: 0.9rem;
  }
}
.footer-section {
  margin-top: auto;
} /* Terms and Conditions Page Layout */
.terms-and-conditions-page {
  /* background: #fafdff; */
  min-height: unset !important;
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  margin: 5.20vw 6.25vw 0 !important;
}

.container {
  width: 100%;
  max-width: 93.75vw;
  padding: 0 0.83vw;
  margin: 0 auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.terms-and-conditions-content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 87.5vw;
  /* margin: 60px auto 60px auto; */
  /* padding-left: 2rem;
  padding-right: 2rem; */
  display: flex;
  flex-direction: column;
  gap: 3.12vw;
}
.terms-and-conditions-heading {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 2.08vw;
  font-weight: 700;
  color: #000;
  /* margin-bottom: 24px; */
  text-align: left;
}
.terms-and-conditions-body {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.93vw;
  color: #222;
  line-height: 1.7;
  /* background: #fff; */
  /* border-radius: 12px; */
  /* padding: 36px 32px; */
  /* box-shadow: 0 0 32px 4px rgba(0,0,0,0.04); */
}
.terms-and-conditions-body ul {
  margin: 0.62vw 0 0.62vw 1.25vw;
  padding: 0;
}
.terms-and-conditions-body li {
  margin-bottom: 0.41vw;
  font-size: 0.93vw;
}

.ppp-section-paragraph {
  font-size: 1.04vw;
  color: #000;
  line-height: 1.7;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  overflow-x: hidden;
  max-width: 100%;
}

.ppp-section-paragraph p {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.94vw;
}

.ppp-section-paragraph ul {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  padding-left: 1.04vw;
  list-style-type: disc;
  list-style-position: outside;
  margin: 0.94vw 0;
  font-size: 1.04vw;
  font-family: inherit;
}

.ppp-section-paragraph li {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.47vw;
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 0.26vw;
  text-indent: -0.26vw;
  font-size: 1.04vw;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.7;
}

.ppp-section-paragraph ul li::marker {
  color: #000;
  font-size: 1.04vw;
  font-weight: bold;
  font-family: inherit;
}

.ppp-section-paragraph ol {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  padding-left: 1.04vw;
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0.94vw 0;
  font-size: 1.04vw;
  font-family: inherit;
}

.ppp-section-paragraph ol li {
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 0.47vw;
  display: list-item;
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 0.26vw;
  text-indent: -0.26vw;
  font-size: 1.04vw;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .terms-and-conditions-content {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 32px auto 32px auto;
  }
  .terms-and-conditions-heading {
    font-size: 2rem;
  }
  .terms-and-conditions-body {
    padding: 24px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .terms-and-conditions-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 32px;
  }
  .terms-and-conditions-heading {
    font-size: 1.5rem;
  }
  .terms-and-conditions-body {
    padding: 12px 4px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .terms-and-conditions-content {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    gap: 16px;
  }
  .terms-and-conditions-heading {
    font-size: 1.1rem;
  }
  .terms-and-conditions-body {
    padding: 8px 2px;
    font-size: 0.9rem;
  }
}
.footer-section {
  margin-top: auto;
} .learning-library-page {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
  padding: 0;
}

.learning-library-page .container{
  padding: 2.34vw 3.12vw 0 !important;
  width: unset;
  max-width: unset;
}

.courses-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 24px 0 0 0; */
  height: 3.12vw;
  /* margin-bottom: 42px; */
}

.courses-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 1.35vw;
  font-weight: 600;
  color: #000;
}

.courses-filters {
  display: flex;
  align-items: center;
  gap: 1.09vw;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #979797;
  border-radius: 12px;
  padding: 1.04vw 1.25vw;
  height: 3.12vw;
  gap: 0.52vw;
  width: 25.72vw;
}

.search-icon {
  flex-shrink: 0;
}

.search-bar input {
  font-family: 'Inter', Helvetica, sans-serif;
  border: none;
  outline: none;
  font-size: 0.83vw;
  background: transparent;
  color: #222;
  width: 100%;
}

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

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

.filter-dropdowns {
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 6px;
  padding: 0.52vw 1.25vw;
  font-size: 0.83vw;
  color: #000;
  opacity: 0.4;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.41vw;
  transition: opacity 0.2s ease;
}

/* .dropdown-btn:hover {
  opacity: 0.6;
} */

.dropdown-select {
  /* background: #fff; */
  border: 1px solid #979797;
  border-radius: 6px;
  padding: 1.04vw 1.97vw;
  font-size: 0.83vw;
  color: #000;
  /* opacity: 0.4; */
  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='currentColor' 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 0.83vw center;
  background-size: 0.83vw;
  min-width: 10.72vw;
  font-weight: 400;
}

/* .dropdown-select:hover {
  opacity: 1;
} */

.dropdown-select:focus {
  outline: none;
  border-color: #5681ef;
  opacity: 1;
}

@media (max-width: 1200px) {
  .courses-navbar {
    padding: 20px 20px 0 20px;
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  
  .courses-filters {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-bar {
    width: 100%;
  }

  .filter-dropdowns {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-select {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .courses-navbar {
    padding: 15px 15px 0 15px;
  }
  
  .courses-title {
    font-size: 1.5rem;
  }
  
  .courses-filters {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .search-bar {
    width: 100%;
    min-width: auto;
  }
  
  .filter-dropdowns {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  
  .dropdown-btn {
    flex: 1;
    justify-content: center;
  }
}

.courses-section {
  padding: 2.18vw 2.5vw 0 2.5vw;
}

.courses-section h2 {
  font-size: 1.67vw;
  font-weight: 700;
  margin-bottom: 1.09vw;
}

.courses-list {
  display: flex;
  gap: 1.87vw;
}

@media (max-width: 1200px) {
  .courses-list {
    flex-direction: column;
    gap: 36px;
    width: 100%;
  }
}

.library-intro {
  margin-bottom: 1.66vw;
}

.library-intro h1 {
  font-size: 1.83vw;
  font-weight: 700;
  margin-bottom: 0.62vw;
}

.library-intro p {
  font-size: 0.92vw;
  color: #444;
  max-width: 36.45vw;
  line-height: 1.6;
}

.products-section {
  padding: 0;
} 

.products-section .section-title{
  margin-bottom: 0;
  font-size: 1.25vw;
  font-weight: 600;
  color: #000000;
  text-align: left;
}

.no-data-message{
  font-size: 1.25vw;
    font-weight: 500;
    margin: auto;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
/* Subscription Page Styles */
.subscription-page {
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.subscription-page .container {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.51vw 3.13vw 0 !important;
  max-width: unset;
}

.subscription-header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.41vw;
  width: 100%;
}

.subscription-tabs {
  display: flex;
  gap: 1.25vw;
  align-items: center;
}

.tab {
  padding: 0.94vw 1.25vw;
  border: 1px solid #5681ef;
  border-radius: 4px;
  background: transparent;
  color: #000;
  font-size: 0.83vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 10.42vw;
  text-align: center;
}

.tab.active {
  background: #5681ef;
  color: #fff;
  border-color: #5681ef;
}

.tab:not(.active) {
  background: transparent;
  color: #000;
  border-color: transparent;
}

/* .tab:not(.active):hover {
  border-color: #5681ef;
} */

.search-filters {
  display: flex;
  gap: 1.41vw;
  align-items: center;
}

.search-container {
  width: 39.84vw;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #979797;
  border-radius: 12px;
  padding: 0 1.25vw;
  height: 3.13vw;
  gap: 0.52vw;
}

.search-icon {
  flex-shrink: 0;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 0.83vw;
  background: transparent;
  color: #222;
  width: 100%;
}

.search-bar input::-moz-placeholder {
  color: #222;
  opacity: 0.7;
}

.search-bar input::placeholder {
  color: #222;
  opacity: 0.7;
}

.filter-dropdowns {
  display: flex;
  flex-direction: row;
  gap: 1.25vw;
}

.dropdown {
  position: relative;
  height: 3.13vw;
  display: flex;
  align-items: center;
}

.dropdown-select {
  width: 100%;
  height: 3.13vw;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 0 1.98vw 0 1.04vw;
  font-size: 0.83vw;
  color: #000;
  opacity: 0.4;
  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='currentColor' 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 10px center;
  background-size: 0.83vw;
}

.dropdown-select:focus {
  outline: none;
  border-color: #5681ef;
  opacity: 1;
}

.subscription-body {
  display: flex;
  gap: 1.46vw;
  width: 100%;
  flex: 1 1 0%;
  min-height: 0;
  align-items: stretch;
  margin: 2.08vw 0;
}

.main-content {
  flex: 1 1 0%;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
}

.subscription-body .main-content{
  overflow-y: unset;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.04vw;
  flex-wrap: wrap;
}

.course-card {
  background: #fff;
  border: 1px solid #AAAAAA;
  border-radius: 12px;
  padding: 1.04vw;
  /* width: calc(33.333% - 14px);
  min-width: 320px; */
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  transition: box-shadow 0.3s ease;
}

.course-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.course-image-container {
  width: 100%;
  height: 10.16vw;
  overflow: hidden;
  border-radius: 12px;
}

.course-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.course-tags {
  display: flex;
  gap: 0.63vw;
  flex-wrap: wrap;
}

.course-tag {
  background: #f1f1f1;
  border: 1px solid #5681ef;
  border-radius: 24px;
  padding: 0.52vw 0.94vw;
  font-size: 0.73vw;
  color: #000;
  white-space: nowrap;
}

.course-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25vw;
}

.course-info {
  flex: 1;
}

.course-title {
  font-size: 0.83vw;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

.course-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.31vw;
  min-width: 2.5vw;
}

.price-label {
  font-size: 0.73vw;
  color: #000;
  font-weight: 500;
}

.price-value {
  font-size: 1.04vw;
  font-weight: 700;
  color: #000;
}

.view-course-btn {
  background: transparent;
  color: #5681ef;
  border: 1px solid #5681ef;
  border-radius: 12px;
  padding: 1.04vw;
  font-size: 0.83vw;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 3.13vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

/* .view-course-btn:hover {
  background: #5681ef;
  color: #fff;
} */

.subscription-sidebar {
  width: 20.83vw;
  background: #fafafa;
  border: 1px solid #aaa;
  border-radius: 16px;
  padding: 1.25vw;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  flex-shrink: 0;
  height: 46.56vw;
}

.subscription-sidebar .plan-title {
  font-size: 1.25vw;
}

.subscription-sidebar .price {
  font-size: 1.88vw;
}

.subscription-sidebar .courses-included {
  font-size: 1.04vw;
  font-weight: 400;
}

.plan-content {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  flex: 1;
}

.plan-title {
  font-size: 1.15vw;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.plan-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.67vw;
  font-weight: 700;
  color: #222;
}

.courses-included {
  font-size: 0.83vw;
  color: #000;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: #000;
  width: 100%;
}

.plan-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.63vw;
}

.category-tag {
  background: #eef8ff;
  border-radius: 24px;
  padding: 0.52vw 0.94vw;
  font-size: 0.73vw;
  color: #000;
  white-space: nowrap;
}

.plan-description {
  font-size: 0.78vw;
  color: #000;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.buy-plan-btn {
  background: #5681ef;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.25vw;
  font-size: 0.94vw;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: auto;
}

/* .buy-plan-btn:hover {
  background: #4a6fd8;
} */

@media (max-width: 1200px) {
  .subscription-body {
    flex-direction: column;
  }
  
  .subscription-sidebar {
    width: 100%;
  }
  
  .course-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .search-filters, .subscription-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .course-card {
    width: 100%;
  }
}

/* Prevent header/footer from growing */
.HeaderSubsection, .FooterSubsection {
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  min-height: unset !important;
  max-height: unset !important;
}

.subscription-tabs-row {
  display: flex;
  flex-direction: row;
  gap: 1.25vw;
  margin-bottom: 1.72vw;
}

.subscription-tabs-row .tab {
  padding: 0 0 0.93vw;
  font-size: 0.94vw;
  font-weight: 400;
  /* height: 58px;
  min-width: 200px;
  border-radius: 4px;
  border: 1px solid #5681ef; */
  background: #fff;
  color: #000;
  transition: all 0.3s;
  min-width: 12.5vw;
  background-color: unset;
}

.subscription-tabs-row .tab.active {
  /* background: #5681ef;
  color: #fff; */
  border-color: unset;
  border: unset;
  border-bottom: 6px solid #5681EF;
  font-weight: 600;
}

.subscription-tabs-row .tab:not(.active) {
  /* background: #f1f1f1; */
  color: #000;
  /* border-color: #aaa; */
}

.subscription-filters-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.41vw;
  margin-bottom: 1.72vw;
}

.subscription-filters-row .search-container {
  width: 41.5vw !important;
  flex: 1 1 10.41vw;
}

.subscription-filters-row .search-container .search-bar{
  width: 100%;
  background: unset;
  border: 1px solid #aaaaaa;
}

.subscription-filters-row .filter-dropdowns .dropdown-select{
  background-color: unset;
  opacity: unset;
}
.search-container {
  width: 39.84vw;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #979797;
  border-radius: 12px;
  padding: 0 1.25vw;
  height: 3.13vw;
  gap: 0.52vw;
}

.search-icon {
  flex-shrink: 0;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 0.83vw;
  background: transparent;
  color: #222;
  width: 100%;
}

.filter-dropdowns {
  display: flex;
  flex-direction: row;
  gap: 1.25vw;
}

.dropdown {
  position: relative;
  height: 3.13vw;
  display: flex;
  align-items: center;
}

.dropdown-select {
  width: 100%;
  height: 3.13vw;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 0 1.98vw 0 1.04vw;
  font-size: 0.83vw;
  color: #000;
  opacity: 0.4;
  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='currentColor' 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 10px center;
  background-size: 0.83vw;
}

.dropdown-select:focus {
  outline: none;
  border-color: #5681ef;
  opacity: 1;
}

/* Modal Styles - Only the new modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.04vw;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 50.36vw;
  max-height: 45.47vw;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.checkout-modal {
  /* max-height: 696px; */
  border-radius: 16px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.80vw 3.44vw 0;
  margin-bottom: 1.67vw;
}

.modal-tabs {
  display: flex;
  gap: 0;
  background: #f0f0f0;
  border-radius: 8px;
  /* padding: 4px; */
}

.checkout-tabs {
  background: transparent;
  padding: 0;
  gap: 0;
}

.checkout-tabs .tab {
  padding: 0.63vw 1.25vw;
  border: 1px solid #66bb6a;
  border-radius: 0;
  font-size: 0.83vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #66bb6a;
  background: white;
}

.checkout-tabs .tab.active {
  background: #5681ef;
  color: white;
  border-color: #5681ef;
}

.checkout-tabs .tab.inactive {
  background: white;
  color: #66bb6a;
  border-color: #66bb6a;
}

.modal-tabs .tab {
  padding: 0.63vw 1.04vw;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: 1.25vw;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #424345;
}

.modal-tabs .tab.active {
  background: #5681ef;
  color: white;
  border-radius: 0 6px 6px 0;
}

.modal-tabs .tab.inactive:first-child{
  background: #ffffff;
  color: #424242;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.42vw;
  border-radius: 4px;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #f0f0f0;
}

.modal-body {
  padding: 0 3.02vw 3.49vw 3.96vw;
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
}

.checkout-body {
  padding: 0 2.29vw 2.29vw;
  gap: 1.67vw;
}

.plan-details-section {
  display: flex;
  gap: 2.24vw;
  align-items: flex-start;
}

.plan-card-container {
  display: flex;
  gap: 2.24vw;
  align-items: flex-start;
}

.plan-card {
  width: 16.98vw;
  height: 9.42vw;
  position: relative;
}

.card-image {
  width: 16.98vw;
  height: 9.42vw;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-placeholder {
  width: 100%;
  height: 100%;
  background: #222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.73vw;
}

.plan-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
  margin: auto;
  /* padding-top: 58px; */
}

.plan-info .plan-title {
  font-size: 1.88vw;
  font-weight: 600;
  color: #424345;
  margin: 0;
}

.plan-info .plan-subtitle {
  font-size: 1.25vw;
  font-weight: 400;
  color: #424345;
  margin: 0;
}

.plan-info .plan-courses {
  font-size: 0.83vw;
  color: #424345;
  margin: 0;
}

.form-section {
  background: white;
  border-radius: 12px;
  padding: 1.25vw 0.63vw;
  display: flex;
  flex-direction: column;
  gap: 1.35vw;
}

.form-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.63vw;
}

.form-section label {
  font-size: 0.93vw;
  font-weight: 500;
  color: #000;
}

.form-section input {
  padding: 0.83vw;
  border: none;
  border-radius: 6px;
  background: #f1f1f1;
  font-size: 0.83vw;
  outline: none;
}

/* .form-section input:focus {
  background: #e6eaff;
} */

.email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-tooltip {
  position: relative;
}

.info-badge {
  background: #222;
  color: white;
  padding: 0.52vw;
  border-radius: 6px;
  font-size: 0.73vw;
  position: relative;
  max-width: 20.31vw;
}

.tooltip-arrow {
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid #222;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.total-section {
  display: flex;
  justify-content: center;
  padding: 0 0.63vw;
}

.total-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* max-width: 801px; */
  gap: 1.25vw;
  flex-direction: column;
}

.total-line{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.subscription-total-container{
  flex-direction: unset;
}

.subscription-total-container .total-price{
  color: #5681EF;
}
 
.subscription-total-container .total-label, .learning-total-label{
  font-size: 1.25vw;
}

.total-label-discount, .total-price-discount{
  color: rgba(44, 207, 109, 1) !important;
}

.total-price-discount{
  font-size: 1.25vw;
}

.total-price-border{
  border: 4px solid rgba(66, 67, 69, 1);
  width: 100%;
}

.total-discount-price{
  color: rgba(34, 34, 34, 1) !important;
  font-weight: 600;
}

.total-label {
  font-size: 1.04vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.41);
}

.total-price {
  font-size: 1.88vw;
  font-weight: 600;
  color: rgba(151, 151, 151, 1);
}

.action-section {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  margin: 0 0.63vw;
}

.next-button {
  background: #5681ef;
  color: white;
  border: none;
  padding: 0.89vw 18.75vw;
  border-radius: 8px;
  font-size: 1.25vw;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  /* max-width: 777px; */
}

.next-button:disabled{
  cursor: not-allowed;
}

.checkout-button {
  background: #5681ef;
  color: white;
  border: none;
  padding: 0.89vw 17.14vw;
  border-radius: 8px;
  font-size: 1.51vw;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  /* max-width: 777px; */
}

/* .checkout-button:hover {
  background: #3a5fcf;
} */
.checkout-button:disabled{
  cursor: not-allowed;
}

.terms-text {
  font-size: 0.73vw;
  color: #424242;
  font-weight: 500;
  /* text-align: center; */
  margin: 0;
  max-width: 40.47vw;
}

/* Modal Responsive Design */
@media (max-width: 1200px) {
  .modal-content {
    max-width: 90vw;
    margin: 20px;
  }
  
  .modal-header {
    padding: 20px 30px 0;
  }
  
  .modal-body {
    padding: 0 30px 30px;
  }
  
  .checkout-body {
    padding: 0 30px 30px;
  }
  
  .plan-details-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .plan-card-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .plan-card {
    width: 100%;
    max-width: 326px;
  }
  
  .plan-info {
    padding-top: 0;
  }
  
  .next-button, .checkout-button {
    padding: 17px 20px;
  }
  
  .total-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95vw;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 16px 20px 0;
  }
  
  .modal-body {
    padding: 0 20px 20px;
    gap: 20px;
  }
  
  .checkout-body {
    padding: 0 20px 20px;
    gap: 20px;
  }
  
  .plan-info .plan-title {
    font-size: 1.5rem;
  }
  
  .plan-info .plan-subtitle {
    font-size: 1.25rem;
  }
  
  .plan-info .plan-courses {
    font-size: 1rem;
  }
  
  .next-button, .checkout-button {
    font-size: 1.25rem;
    padding: 16px 20px;
  }
  
  .total-label {
    font-size: 1.5rem;
  }
  
  .total-price {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .checkout-modal {
    border-radius: 0;
  }
  
  .modal-header {
    padding: 12px 16px 0;
  }
  
  .modal-body {
    padding: 0 16px 16px;
    gap: 16px;
  }
  
  .checkout-body {
    padding: 0 16px 16px;
    gap: 16px;
  }
  
  .plan-card {
    height: 120px;
  }
  
  .plan-info .plan-title {
    font-size: 1.25rem;
  }
  
  .plan-info .plan-subtitle {
    font-size: 1rem;
  }
  
  .plan-info .plan-courses {
    font-size: 0.875rem;
  }
  
  .next-button, .checkout-button {
    font-size: 1rem;
    padding: 14px 16px;
  }
  
  .terms-text {
    font-size: 0.75rem;
  }
  
  .total-label {
    font-size: 1.25rem;
  }
  
  .total-price {
    font-size: 1.5rem;
  }
  
  .total-container {
    gap: 20px;
  }
} 

.no-courses-text{
  font-size: 1.25vw;
    font-weight: 500;
    margin: auto;
    display: flex;
    align-items: center;
    min-height: 100vh;
}.header-subsection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.52vw;
  padding: 1.30vw 3.96vw 1.30vw 2.03vw;
  /* width: 100%; */
  background-color: #f0f4f8;
  border-radius: 12px;
  border: 1px solid #aaaaaa;
  overflow-x: hidden;
  margin: 1.67vw 3.13vw 0 !important;
}

.header-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.04vw;
}

.logo {
  height: 2.08vw;
  max-width: 6.25vw;
  width: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.63vw;
  flex-wrap: wrap;
}


.navigation-menu,
.login-menu {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35vw;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-item {
  display: flex;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52vw;
  padding: 0.52vw;
  text-decoration: none;
  color: #222222;
  font-size: 0.83vw;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* .nav-link:hover {
  color: #0066cc;
} */

.nav-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.93vw;
  color: #222222;
}

.login-link .nav-text {
  font-weight: 500;
}

.separator {
  width: 0.052vw;
  height: 2.19vw;
  background-color: #222222;
  margin: 0 0.42vw;
  flex-shrink: 0;
  border: 1px;
}

.nav-link.active {
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-subsection {
    padding: 15px 20px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .nav-container {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-list {
    gap: 15px;
    justify-content: center;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-list {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-link {
    font-size: 14px;
    padding: 8px;
  }
} .footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  border-radius: 12px;
  height: 5.88vw;
  padding: 0 2.60vw 0 2.39vw;
  /* width: 100%; */
  box-sizing: border-box;
  margin: 2.23vw 3.12vw 0;
}

.footer-links {
  display: flex;
  gap: 0.83vw;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
  font-size: 0.83vw;
  font-weight: 400;
  transition: color 0.2s;
}
/* .footer-link:hover {
  color: #7ab6ff;
} */

.footer-powered-by {
  display: flex;
  align-items: center;
  gap: 0.26vw;
}

.powered-by-text {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.83vw;
  font-weight: 400;
}

.skolasti-logo {
  height: 0.88vw;
  margin-left: 0.26vw;
}

.footer-social-links {
  display: flex;
  gap: 0.83vw;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-icon {
  width: 1.87vw;
  height: 1.87vw;
  display: block;
  transition: transform 0.2s;
}

/* .footer-social-link:hover .footer-social-icon {
  transform: scale(1.1);
} */

@media (max-width: 900px) {
  .footer-section {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  .footer-links, .footer-social-links {
    justify-content: center;
  }
} 

.course-details-page {
  background: #fafdff;
  min-height: 100vh;
  /* padding: 40px 0; */
  margin: 1.25vw 3.13vw 0 !important;
}

.container {
  max-width: 62.5vw;
  margin: 0 auto;
  padding: 0 1.67vw;
}

.course-details-header {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  margin-bottom: 1.67vw;
}

.back-btn {
  background: none;
  border: none;
  font-size: 1.04vw;
  cursor: pointer;
  color: #222;
}

.course-title {
  font-size: 1.25vw;
  font-weight: 700;
  color: #222;
}

.course-details-main {
  display: flex;
  gap: 2.08vw;
  align-items: flex-start;
  /* height: calc(100vh - 120px);  */
  min-height: 0;
}

/* --- Left Section Fixed & Scrollable --- */
.course-details-left-fixed {
  flex: 2;
  min-width: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.67vw;
  background: transparent;
}

.course-back-row {
  display: flex;
  align-items: center;
  gap: 0.52vw;
  margin-bottom: 0.94vw;
}
.back-btn {
  background: none;
  border: none;
  padding: 0;
  margin-right: 0.10vw; 
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 1.67vw;
  width: 1.67vw; 
}
.back-btn svg {
  display: block;
}
.course-back-title {
  font-size: 0.83vw;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.course-main-thumbnail {
  width: 100%;
  max-width: 62.76vw;
  height: 29.79vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.82vw;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.course-main-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.course-title-main {
  font-size: 1.88vw;
  font-weight: 700;
  color: #062349;
  margin: 0 0 0.83vw 0;
  /* text-transform: lowercase; */
}

/* Scrollable content area below title/thumbnail */
.course-details-scrollable-content {
  flex: unset;
  min-height: unset;
  overflow-y: unset;
  display: unset;
  flex-direction: unset;
}

.course-tags-row {
  display: flex;
  gap: 0.83vw;
  margin-bottom: 1.56vw;
  flex-wrap: wrap;
}

.course-tag {
  background: #f0f4f8;
  color: #043677;
  border: 1.1px solid #043677;
  border-radius: 2.2px;
  padding: 0.31vw 0.83vw;
  font-size: 0.63vw;
  font-weight: 600;
  letter-spacing: 0.03vw;
  white-space: nowrap;
}

.course-playlist-section {
  margin-top: 0.63vw;
}

.playlist-title {
  color: #062349;
  font-size: 1.04vw;
  font-weight: 600;
  margin-bottom: 0.93vw;
}
.playlist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.94vw;
}
.playlist-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.63vw 0.83vw;
  min-height: 4.17vw;
  position: relative;
  transition: box-shadow 0.2s;
}
.playlist-item.active {
  box-shadow: 0 4px 16px rgba(86,129,239,0.12);
}
.playlist-active-bar {
  width: 0.31vw;
  height: 100%;
  background: #5681ef;
  border-radius: 12px 0 0 12px;
  position: absolute;
  left: 0;
  top: 0;
}
.playlist-thumb {
  width: 7.40vw;
  height: 4.17vw;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.83vw;
  flex-shrink: 0;
  background: #eee;
}
.playlist-video-title {
  font-size: 0.93vw;
  color: #062349;
  font-weight: 600;
}

/* --- Right Section --- */
.course-details-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  min-width: 17.71vw;
  max-width: 30.31vw;
}

.course-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.25vw;
  display: flex;
  flex-direction: column;
  gap: 1.41vw;
}

/* .info-title-row {
  margin-bottom: 8px;
} */
.info-title {
  font-size: 1.25vw;
  font-weight: 600;
  color: #424345;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  /* margin-bottom: 12px; */
}
.info-icon-circle {
  width: 2.08vw;
  height: 2.08vw;
  border-radius: 24px;
  background: rgba(86,129,239,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon-circle.faded {
  background: rgba(86,129,239,0.25);
}
.info-label {
  font-size: 1.04vw;
  font-weight: 400;
  color: #424345;
  min-width: 3.65vw;
}
.info-value {
  font-size: 1.04vw;
  font-weight: 400;
  color: #424345;
  margin-left: auto;
}
.info-value-group {
  display: flex;
  align-items: flex-end;
  gap: 0.42vw;
  margin-left: auto;
}
.info-price-old {
  font-size: 1.25vw;
  color: #000;
  opacity: 0.5;
  text-decoration: line-through;
  font-weight: 600;
  margin: auto;
}
.info-price-new {
  font-size: 1.88vw;
  color: #222222;
  font-weight: 600;
}

.info-price-divider{
  border: 2px solid #00000026;
}

.buy-now-btn-figma {
  width: 100%;
  background: #5681ef;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.73vw 0;
  font-size: 0.83vw;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
/* .buy-now-btn-figma:hover {
  background: #3a5fcf;
} */

.course-notes-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.25vw;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
  min-height: 27.08vw;
  max-height: 27.08vw;
}
.notes-title {
  font-size: 0.83vw;
  font-weight: 600;
  color: #062349;
}
.notes-desc {
  font-size: 0.83vw;
  color: #062349;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
  }
  .course-details-main {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .course-details-left-fixed {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    height: 400px;
    max-height: 400px;
  }
  .course-main-thumbnail {
    height: 220px;
  }
  .playlist-thumb {
    width: 60px;
    height: 60px;
  }
  .course-details-right {
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
  .course-details-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .course-title-main {
    font-size: 1.2rem;
  }
  .course-details-main {
    gap: 16px;
  }
  .course-info-card, .course-notes-card {
    padding: 16px 8px;
  }
  .course-main-thumbnail {
    height: 160px;
  }
  .playlist-thumb {
    width: 48px;
    height: 48px;
  }
  .playlist-item {
    padding-right: 8px;
  }
  .course-tags-row {
    gap: 8px;
  }
  .course-details-left-fixed {
    height: 250px;
    max-height: 250px;
  }
  .course-details-right {
    max-width: 100%;
    min-width: unset;
  }
} 


.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content.thankyou-modal, .already-purchased-body {
  background: #fff;
  border-radius: 21px;
  width: 50.36vw;
  max-width: 90vw;
  padding: 6.25vw 1.67vw 6.25vw 1.67vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  text-align: center;
  position: relative;
}

.already-purchased-body{
  gap: unset;
}

.already-purchased-body .modal-title{
  padding-top: unset;
  margin-bottom: 1.5vw;
}

.modal-close {
  position: absolute;
  top: 0.94vw;
  right: 0.94vw;
  background: none;
  border: none;
  cursor: pointer;
}

.thankyou-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-checkmark-circle{
  margin: auto;
}

.thankyou-checkmark-circle, .info-checkmark-circle {
  margin-bottom: 2.18vw;
  width: 8.33vw;
  height: 8.33vw;
}

.thankyou-checkmark-circle svg, .info-checkmark-circle svg{
  width: 100%;
  height: 100%;
}

.thankyou-title {
  font-size: 1.87vw;
  font-weight: 700;
  color: #424344;
  margin-bottom: 0.63vw;
}

.thankyou-saved {
  font-size: 1.04vw;
  color: #424344;
  margin-bottom: 1.67vw;
}

.thankyou-start-btn {
  background: #5681EF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.63vw 2.5vw;
  font-size: 1.04vw;
  font-weight: 600;
  cursor: pointer;
}

.modal-title {
  font-size: 1.04vw;
  font-weight: 600;
  margin-bottom: 0.52vw;
  padding-top: 3.49vw;
}
.modal-message {
  font-size: 0.83vw;
  margin-bottom: 1.04vw;
}
.modal-ok-btn {
  background-color: #5681EF;
  color: white;
  border: none;
  padding: 0.52vw 1.04vw;
  border-radius: 6px;
  cursor: pointer;
}
.modal-ok-btn:hover {
  background-color: #416ad4;
}
*, ::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;
}
.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;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.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-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.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;
}
.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%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
@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;
}
.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-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-t {
  border-top-width: 1px;
}
.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-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-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-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-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;
}
.p-0 {
  padding: 0px;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.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;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.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-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-tight {
  line-height: 1.25;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / 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-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);
}
.outline {
  outline-style: solid;
}
.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-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;
}
.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\: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);
}

.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-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;
}

@media (min-width: 640px) {

  .sm\:w-auto {
    width: auto;
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {

  .md\:mt-0 {
    margin-top: 0px;
  }

  .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\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .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\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}