/** Shopify CDN: Minification failed

Line 1417:0 Unexpected "}"
Line 1419:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.custom-services {
  background-color: #0A0A0A;
  color: #fff;
  padding: 96px 44px;
}

.custom-services__heading {
  text-align: center;
  font-size: 80px;
  letter-spacing: 6px;
  color: white;
  margin-bottom: 32px;
  margin-top: 0px;
}

.custom-services__subheading {
  text-align: center;
  font-size: 17px;
  color: #ccc;
  letter-spacing: 2px;
  margin-bottom: 64px;
  margin-top: 0px;
}

.custom-services__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
}

.custom-services__card {
  background-color: #111;
  overflow: hidden;
  max-width: 32%;
  width: 100%;
  border: 1px solid #222;
  transition: transform 0.3s ease;
}

.custom-services__card:hover{
    border: 1px solid white;
}


.custom-services__image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.custom-services__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Black overlay using ::before */
.custom-services__image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009e; /* Black with 85% opacity */
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}


/* Hover effects */
.custom-services__card:hover .custom-services__image-wrapper img {
  transform: scale(1.05);
}

.custom-services__card:hover .custom-services__image-wrapper::before {
  opacity: 0;
}

.custom-services__content {
  padding: 32px;
  background-color:black;
  text-align: left;

}

.custom-services__title {
  font-size: 20px;
  letter-spacing: 1px;
   margin-top: 0px;
  margin-bottom: 15px;
  color: white;
}

.custom-services__text {
      font-size: 16px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custom-services__cards {
    flex-direction: column;
    gap: 32px;
  }

  .custom-services {
    padding: 64px 16px;
  }

  .custom-services__content {
    padding: 32px;
  }

  .custom-services__card {
    max-width: 100%;
  }

  .custom-services__heading {
    font-size: 28px;
  }

  .custom-services__subheading {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.dskljslkw {
  background-color: rgb(0, 0, 0); /* #000 in rgb */
  color: #fff;
  padding: 128px 44px 80px 44px;
}

.dskljslkw h1 {
  text-align: center;
  font-size: 80px;
  letter-spacing: 6px;
  color: white;
  margin-bottom: 32px;
}

.dskljslkw .subheading {
  text-align: center;
  font-size: 16px;
  color: #ccc;
  letter-spacing: 2px;
  margin-bottom: 64px;
}

.dskljslkw .cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
}

.dskljslkw .card {
  background-color: rgb(17, 17, 17); /* #111 in rgb */
  overflow: hidden;
  max-width: 32%;
  width: 100%;
  border: 1px solid rgb(34, 34, 34); /* #222 in rgb */
  transition: transform 0.3s ease;
}

.dskljslkw .card:hover{
  border:1px solid white;
}

.dskljslkw .image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

/* Overlay using ::before */
.dskljslkw .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6); /* black overlay with 60% opacity */
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.dskljslkw .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1; /* below overlay */
}

/* Hover effects */
.dskljslkw .card:hover .image-wrapper img {
  transform: scale(1.05);
}

.dskljslkw .card:hover .image-wrapper::before {
  opacity: 0; /* fade out overlay on hover */
}

.dskljslkw .card-content {
  padding: 48px;
  text-align: left;
}

.dskljslkw .card-content h2 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top:0px;
  color: white;
}

.dskljslkw .card-content p {
     font-size: 16px;
    color: #cccccc;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.6;
}

/* BUTTON STYLE */
.dskljslkw .btn-outline {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  background-color: white;
  color: black;
  border: 2px solid white;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.dskljslkw .btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: left 0.4s ease;
}

.dskljslkw .btn-outline:hover::before {
  left: 0;
}

.dskljslkw .btn-outline:hover {
  color: black;
}

/* RESPONSIVE */
@media (max-width: 768px) {

.dskljslkw{
  padding: 128px 15px 80px 15px;
}

  .dskljslkw .cards {
    flex-direction: column;
    gap: 32px;
  }

  .dskljslkw .card-content {
    padding: 32px;
  }

  .dskljslkw .card {
    max-width: 100%;
  }

  .dskljslkw h1 {
    font-size: 24px;
  }
}
.koirifjw {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 96px 44px;
}

.koirifjw .section-title {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 3px;
  /* padding-bottom: 32px; */
}

.koirifjw .section-subtitle {
  font-size: 17px;
  margin-top: 0px;
  margin-bottom: 64px;
  letter-spacing: 2px;
}

.koirifjw .instructors {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.koirifjw .instructor-card {
  position: relative;
  background-color: #0A0A0A;
  padding: 48px;
  border: 1px solid #333;
  max-width: 31%;
  width: 100%;
  overflow: visible;
}

/* Image wrapper for overlay */
.koirifjw .instructor-card .image-wrapper {
  position: relative;
  width: 115px;
  height: 115px;
  margin: 0 auto 20px auto;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid white;
}

/* Image itself */
.koirifjw .instructor-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay on image */
.koirifjw .instructor-card .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  transition: background-color 0.3s ease;
  z-index: 2;
}

/* Remove overlay on hover */
.koirifjw .instructor-card:hover .image-wrapper::before {
  background-color: rgba(0, 0, 0, 0);
}

.koirifjw .instructor-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  color: white;
}

.koirifjw .instructor-card .role {
  font-weight: bold;
  font-size: 14px;
  margin: 5px 0;
}

.koirifjw .instructor-card .experience {
  font-size: 13px;
  letter-spacing: 1px;
  color: #888888;
  margin: 0px 0px 24px 0px;
}

.koirifjw .instructor-card .description {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
}



@media only screen and (max-width: 480px) {

  .koirifjw .instructor-card .description{
        line-height: 1.9;
  }
  

.koirifjw{
  padding: 64px 16px;
}


.koirifjw .section-title{
  font-size: 28px;
}

.koirifjw .section-subtitle{
   font-size: 16px;
}

.koirifjw .instructor-card{
  max-width: 100%;
}

.koirifjw .instructor-card .experience{
  margin-bottom: 16px;
}

}
.featured-courses {
  background-color: #0a0a0a;
  color: white;
  padding: 0px 0;
}

.featured-courses .container {
  padding: 96px 44px;
  max-width: 100%;
  margin: auto;
  width: 100%;
}

.featured-courses .title {
  text-align: center;
  font-size: 80px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  margin-top: 0px;
}

.featured-courses .subtitle {
  text-align: center;
  font-size: 17px;
  margin-top: 0px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 64px;
}

.featured-courses .courses {
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  justify-content: center;
}

.featured-courses .card {
  background-color: black;
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  height: 100%;
  width: 100%;
}

.featured-courses .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
}

/* Overlay dark shade */
.featured-courses .card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.featured-courses .card:hover .card-image-wrapper::before {
  opacity: 0;
}

.featured-courses .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.featured-courses .card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

/* Top badge on image */
.featured-courses .top-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  color: black;
  font-weight: 600;
  font-size: 10px;
  padding: 8px 14px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 0;
  letter-spacing: 1px;
  white-space: nowrap;
}

.featured-courses .card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-courses .course-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.featured-courses .course-description {
  font-size: 14px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-courses .price {
  font-size: 16px;
  color: white;
  font-weight: bold;
  margin-bottom: 24px; /* thoda kam kar diya badges ke liye space */
}

.featured-courses .badge-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.featured-courses .badge {
  background-color: #222;
  border: 1px solid #444;
  font-size: 10px;
  padding: 8px 14px;
  color: white;
  border-radius: 0px;
  text-transform: uppercase;
}

.featured-courses .btn-hover-slide {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 0;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Button hover effect normal */
.featured-courses .btn-hover-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.featured-courses .btn-hover-slide:hover::before {
  width: 100%;
}

.featured-courses .btn-hover-slide:hover {
  color: #000;
}

/* FIRST CARD BUTTON STYLING */
.featured-courses .courses > .card:first-child .btn-hover-slide {
  background-color: white;
  color: black;
  border: 1px solid transparent; /* remove border for better look */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.featured-courses .courses > .card:first-child .btn-hover-slide::before {
  display: none; /* remove sliding white background on hover for first card */
}

.featured-courses .courses > .card:first-child .btn-hover-slide:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white; /* show white border on hover */
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .featured-courses .courses {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .featured-courses .container {
    padding: 64px 16px;
  }

  .featured-courses .card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 24px;
    height: auto !important;
  }

  .featured-courses .card-image-wrapper {
    height: 206px !important;
  }

  .featured-courses .btn-hover-slide {
    font-size: 16px;
  }

  .featured-courses .title {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .featured-courses .subtitle {
    font-size: 16px !important;
    margin-bottom: 32px;
  }
}
.thtkw {
  background-color: #0a0a0a;
  color: white;
  padding: 20px 0;
}

.thtkw .container {
  padding: 96px 44px;
  max-width: 100%;
  margin: auto;
  width: 100%;
}

.thtkw .title {
  text-align: center;
  font-size: 80px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  margin-top: 0px;
}

.thtkw .subtitle {
  text-align: center;
  font-size: 17px;
  margin-top: 0px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 64px;
}

/* Courses Grid */
.thtkw .courses {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

/* Card Styles */
.thtkw .card {
  background-color: black;
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 23%;
  height: 576px;
  width: 100%;
}

/* Image wrapper with ::before overlay */
.thtkw .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 187px;
  overflow: hidden;
}

.thtkw .card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.thtkw .card:hover .card-image-wrapper::before {
  opacity: 0;
}

.thtkw .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.thtkw .card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.thtkw .card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.thtkw .course-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.thtkw .course-description {
  font-size: 16px;
  text-transform: uppercase;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.4;
}

.thtkw .badge-container {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.thtkw .badge {
  background-color: #222;
  border: 1px solid #444;
  text-align: left;
  font-size: 10px;
  padding: 8px 17px;
  color: white;
  border-radius: 0px;
  text-transform: uppercase;
}

.thtkw .price {
  font-size: 19px;
  color: white;
  font-weight: bold;
  margin-bottom: 32px;
}

/* Button Hover Slide Animation */
.thtkw .btn-hover-slide {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 0;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 1px;
}

.thtkw .btn-hover-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.thtkw .btn-hover-slide:hover::before {
  width: 100%;
}

.thtkw .btn-hover-slide:hover {
  color: #000;
}

@media only screen and (max-width: 768px) {
  .thtkw .courses {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .thtkw .container {
    padding: 64px 16px;
  }

  .thtkw .card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 24px;
    height: auto !important;
  }

  .thtkw .card-image-wrapper {
    height: 206px !important;
  }

  .thtkw .card-image-wrapper img {
    height: 100% !important;
  }

  .thtkw .btn-hover-slide {
    font-size: 16px;
  }

  .thtkw .title {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .thtkw .subtitle {
    font-size: 16px !important;
    margin-bottom: 32px;
  }
}
.license-classes-section {
  width: 100%;
  background-color: #0a0a0a;
  color: white;
  padding: 40px 0;
  box-sizing: border-box;
}

.license-classes-container {
  max-width: 1345px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.license-classes-heading {
  font-family: "TAY Birdie", sans-serif!important;
  font-size: 80px;
  font-weight: 200;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}

.license-classes-subheading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
  text-transform: uppercase;
}

.license-classes-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.license-classes-box {
  padding: 48px;
  flex: 1 1 30%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: white;
  position: relative;
  border: 1px solid #333;
  max-width: 416px;
  height: 433px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  background-color: #000000;
}

.license-classes-box:hover {
  transform: translateY(-10px);
  border: 1px solid white;
}

.license-classes-box h3 {
  font-weight: 900;
  font-size: 32px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: white;
}

.license-classes-box p {
  margin: 0 0 20px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.license-classes-box .details {
  margin-bottom: 30px;
}

.license-classes-box .details div {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff1a;
}

.license-classes-box a {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  color: white;
  border: 2px solid white;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
  width: fit-content;
}

.license-classes-box a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.license-classes-box a:hover::before {
  width: 100%;
}

.license-classes-box a:hover {
  color: black;
}

/* Box 3 - Different style */
.license-classes-box.legend {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 48px;
  justify-content: center;
  position: relative;
  background-color: #000000;
}

.license-classes-box.legend h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.license-classes-box.legend p {
  margin-bottom: 20px;
}

.license-classes-box.legend .details {
  margin-bottom: 30px;
}

.license-classes-box.legend .details div {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.license-classes-box.legend .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid black;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: white;
  color: black;
  border-radius: 0;
  font-family: "TAY Birdie", sans-serif;
}
.cstm-btn-animation{
  background-color: white !important;
  color: black !important;
}
.cstm-btn-animation::before{
  background-color: black !important;
}
.cstm-btn-animation:hover{
  color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
  .license-classes-container {
    padding: 0 16px;
  }

  .license-classes-heading {
    color: white;
    font-size: 28px;
  }

  .license-classes-subheading {
    font-size: 16px;
  }

  .license-classes-boxes {
    flex-direction: column;
  }

  .license-classes-box {
    flex: 1 1 100%;
    margin-bottom: 20px;
    padding: 32px;
  }

  .license-classes-box.legend {
    padding: 30px 20px 20px;
  }

  .license-classes-box a{
    width: 100%;
  }
}
.yjhyt {
  background-color: #000;
  color: #fff;
  padding: 96px 44px;
}

.yjhyt .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.yjhyt .section-title {
  font-size: 80px;
  color: white;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: 2px;
}

.yjhyt .section-subtitle {
  font-size: 17px;
  color: #aaa;
  margin: 0;
}

.yjhyt .programs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}

.yjhyt .program-card {
  background-color: #111;
  border: 1px solid #333;
  padding: 0px;
  width: 100%;
  max-width: calc(33.333% - 16px); /* 3 cards per row */
  box-sizing: border-box;
  transition: transform 0.3s ease, border 0.3s ease; /* Smooth transition */
}

.yjhyt .program-card.highlight {
  border: 2px solid #fff;
}

.yjhyt .program-card.full-width {
  max-width: 100%;
}

.yjhyt .program-card:hover {
  transform: translateY(-8px); /* Lift the card */
  border: 1px solid #fff; /* White border on hover */
}

.yjhyt .program-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.yjhyt .program-description {
  font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #cccccc;
}

.yjhyt .program-features {
  list-style-type: none;
  line-height: 20px;
  padding-left: 0px;
  margin-bottom: 15px;
}

.yjhyt .program-features li {
  font-size: 16px;
  margin-bottom: 5px;
}

/* === Button with left-to-right background hover === */
.yjhyt .program-button {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 48px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.yjhyt .program-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.yjhyt .program-button:hover::before {
  width: 100%;
}

.yjhyt .program-button:hover {
  color: #000;
}

.yjhyt .program-button.new-class {
  background: #f90; /* Example for new class styling */
  color: #000;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
  .yjhyt .program-card,
  .yjhyt .program-card.full-width {
    max-width: 100% !important;
  }

  .yjhyt{
    padding: 64px 16px;
  }

  .yjhyt .program-features {
    list-style-type: disc;
  }

  .yjhyt .program-card {
    padding: 20px;
  }

  .yjhyt .section-title {
    font-size: 28px;
  }

  .yjhyt .section-subtitle{
    font-size: 16px;
  }

  .yjhyt .program-button {
    width: 100%;
    text-align: center;
  }
}
.training-process-section {
  width: 100%;
 background-color: #0a0a0a;
  padding: 40px 0px 80px 0px;
  font-family: "TAY Birdie", sans-serif;
  color: white;
}



.training-process-container {
  max-width: 1345px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.training-process-heading {
  font-size: 80px;
  font-weight: 200;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
  font-family: "TAY Birdie", sans-serif !important;
}

.training-process-subheading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #ccc;
  text-transform: uppercase;
  font-family: "TAY Birdie", sans-serif !important;
}

.timeline {
  position: relative;
  margin-left: 40px;
  border-left: 2px solid #333;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 90px;
  padding-left: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item-circle {
  position: absolute;
  left: -69px;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: white;
  color: black;
  border-radius: 50%;
  font-weight: 900;
  font-size: 19px;
  text-align: center;
  line-height: 40px;
  user-select: none;
  align-content: center;
}

.timeline-item-content h4 {
  margin: 0 0 5px 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

.timeline-item-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bbb;
}

/* Responsive */
/* Mobile layout fix */
@media (max-width: 768px) {
  .timeline {
    margin-left: 0;
    padding-left: 0;
    border-left: none; /* line hata di */
  }

  .timeline-item {
    text-align: center;
    padding-left: 0;
    margin-bottom: 90px;
  }

  .timeline-item-circle {
    position: relative;
    left: 0;
    top: -85px;
    /* margin: 0 auto 55px auto; */
    float: right; /* number right side me */
  }

  .timeline-item-content h4,
  .timeline-item-content p {
    text-align: center;
  }

  .timeline-item-content{
    display: flex;
    flex-direction: column;
        width: 100%;
  }


  .training-process-heading{
    font-size: 28px;
  }
  
  .training-process-subheading{
  margin-bottom: 119px;
  font-size: 16px;
  }

  .training-process-subheading

}

}
.cstm-featured {
  background-color: #0a0a0a;
  color: white;
  padding: 20px 0;
}

.cstm-featured .cstm-container {
  padding: 96px 44px;
  max-width: 100%;
  margin: auto;
  width: 100%;
  background-color: #000;
}

.cstm-featured .cstm-title {
  text-align: center;
  font-size: 80px;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  margin-top: 0px;
  color: white;
  font-family: "TAY Birdie", sans-serif;
}

.cstm-date-label .spn-1{
    font-size: 24px;
    font-family: "TAY Birdie", sans-serif;
    font-weight: 900;
}

.cstm-date-label .spn-2{
    font-size: 12px;
    font-family: "TAY Birdie", sans-serif;
    font-weight: 900;
}

.cstm-featured .cstm-subtitle {
  text-align: center;
  font-size: 17px;
  margin-top: 0px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 64px;
}

/* Courses Grid */
.cstm-featured .cstm-courses {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

/* Card Styles */
.cstm-featured .cstm-card {
  background-color: black;
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 23%;
  height: 576px;
  width: 100%;
  position: relative;
}

.cstm-featured .cstm-card img {
  width: 100%;
  height: 187px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.2);
}

.cstm-featured .cstm-featured-label {
  position: absolute;
  top: 12px;
  left: 200px;
  background: white;
  border: 1px solid #fff;
  color: #000;
  font-size: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  font-family: "TAY Birdie", sans-serif;
}

.cstm-featured .cstm-date-label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
}

.cstm-featured .cstm-card {
  transition: all 0.3s ease;
}

.cstm-featured .cstm-card img {
  transition: all 0.3s ease;
}

.cstm-featured .cstm-card:hover {
  transform: translateY(-10px);
  border: 1px solid #fff;
}

.cstm-featured .cstm-card:hover img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.1);
}

.cstm-featured .cstm-card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cstm-featured .cstm-course-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.cstm-featured .cstm-course-description {
  font-size: 16px;
  text-transform: uppercase;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.4;
}

.cstm-featured .cstm-badge-container {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.cstm-featured .cstm-badge {
  background-color: #222;
  border: 1px solid #444;
  text-align: left;
  font-size: 10px;
  padding: 8px 17px;
  color:white;
  border-radius: 0px;
  text-transform: uppercase;
}

.cstm-featured .cstm-price {
  font-size: 19px;
  color:white;
  font-weight: bold;
  margin-bottom: 32px;
}

/* Button Hover Slide Animation */
.cstm-featured .cstm-btn-hover-slide {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 0;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 1px;
}

.cstm-featured .cstm-btn-hover-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.cstm-featured .cstm-btn-hover-slide:hover::before {
  width: 100%;
}

.cstm-featured .cstm-btn-hover-slide:hover {
  color: #000;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .cstm-featured .cstm-courses {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .cstm-featured .cstm-container {
    padding: 64px 16px;
  }

  .cstm-featured .cstm-card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 24px;
    height: auto !important;
  }

  .cstm-featured .cstm-card img {
    height: 206px !important;
    object-fit: cover;
  }

  .cstm-featured .cstm-btn-hover-slide {
    font-size: 16px;
  }

  .cstm-featured .cstm-title {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .cstm-featured .cstm-subtitle {
    font-size: 16px !important;
    margin-bottom: 32px;
  }
}