/* .hero-training {
    display: flex;
    flex-direction: column;
    background-image: url(/images/webdev-imgs/webdevHeroImg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 5%;
    box-sizing: border-box;
    min-height: 500px;
    padding: 50px 20px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
} */
.hero-training {
    display: flex ;
    position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 70px 0;
        text-align: center;
        height: 100vh;
        background-image: url(/images/landing-imgs/landing-bg/landing-heroBg.webp);
        background-size: cover;
        /* background-position: center; */
        background-position: 200px 60%;
        background-repeat: no-repeat;
        margin-top: 5%;
        box-sizing: border-box;
        min-height: 500px;
}
    .first-section-text h1 {
        line-height: 1.6em;
        font-size: 40px;
    }

    .first-section .hero-title p {
        font-size: 18px;
    }
    .first-section .limited-seats {
        display: inline-block;
        background-color: #e0817e;
        color: white;
        padding: 6px 12px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 10px;
    }

    @media screen and (max-width: 1200px) {
        .first-section-container {
            padding-bottom: 10px;
        }
    }



    /* @media (max-width: 1115px) {
        .first-section {
            padding: 100px 52px;
        }
    } */

    @media screen and (max-width: 776px) {
        .first-section-container {
            padding-top: 30px;
            padding-bottom: 20px;


        }

        .first-section-text h1 {
            line-height: 1.6em;
            font-size: 25px;
        }
    }

    @media screen and (max-width: 576px) {
        .first-section-container {
            padding-top: 30px;
            padding-bottom: 20px;

        }

        .first-section-text h1 {
            line-height: 1.6em;
            font-size: 18px;
        }
    }

    @media (max-width: 450px) {
        .first-section {
            padding: 50px 0px 20px 0px;
        }
    }

    @media (max-width: 450px) {
        .first-section-image img {
            max-width: 96%;
            height: auto;
        }
    }

@media (max-width: 992px) {
    .hero-training {
        padding: 70px 0 10px;
        height: 60vh;
        background-position: center;
    }
}
@media (max-width: 567px) {
    .hero-training{
        padding: 70px 0 10px;
        height: 50vh;
        background-position: center;
    }
}
/* ===============================
    1. about Section CSS
================================== */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background-image: var(--gradient-color);
    color: #fff;
    overflow: hidden;

}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.about-content {
    flex: 1;
    /* max-width: 600px; */
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}


.about-illustration {
    flex: 1;
    text-align: center;
}

.about-illustration img {
    /* max-width: 100%; */
    height: auto;
    border-radius: 10px;
    /* background: var(--primary-color) */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-white);
    color: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}



.btn-secondary span {
    position: relative;
    z-index: 1;
}



[dir="rtl"]  .highlight-box::before {
    left: 0;
}
[dir="ltr"]  .highlight-box::before {
    right: 0;
}
.roadmap-hero__note {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    position: relative;
}

.highlight-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #fff;
    /* animation: bounce 2s infinite; */
}
[dir="rtl"]  .highlight-icon  {
    left: 1rem;
}
[dir="ltr"]  .highlight-icon  {
    right: 1rem;
}
.pulse-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #8521d8;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
[dir="rtl"]  .pulse-dot {
    right: 0.2rem;
}
[dir="ltr"]  .pulse-dot {
    left: 0.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-55%); }
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); opacity: 1; }
    70% { transform: translateY(-50%) scale(1.5); opacity: 0.7; }
    100% { transform: translateY(-50%) scale(1); opacity: 1; }
}


.highlight-box:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* .highlight-box:hover .highlight-icon {
    animation: spin 0.5s ease;
} */

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}
.register-button, #registerButton {
display: inline-block;
padding: 12px 28px;
background-color: #ffffff;
color: var(--primary-color);
text-decoration: none;
border-radius: 8px;
border: 1px solid var(--primary-color);
font-weight: bold;
box-shadow: inset 0px 0.5px 0px rgba(255, 255, 255, 0.32),
            inset 0px -1.5px 0px rgba(255, 255, 255, 0.32);
transition: all 0.3s ease;
cursor: pointer;
}

.register-button:hover, #registerButton:hover {
background-color: var(--primary-color);
color: #ffffff;
border-color: var(--primary-color);
transform: scale(1.05);
}
@media (max-width: 991px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    /* .about-content {
        max-width: 100%;
    } */

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

    .about-description {
        font-size: 1rem;
    }

    .about-illustration {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 0;
    }

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

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}


/* ===============================
    1.end about Section CSS
================================== */


/* ===============================
    2. features Section CSS
================================== */
.features-section {
    padding: 2rem 0rem;
}

.section-title {
    font-size: 35px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    background: white;
    color: var(--secondary-color);
    border: 5px solid;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: white;
    color: var(--primary-color);
    transform: rotate(15deg) scale(1.1);
    border-color: white;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

@media (max-width: 991.98px) {
    .features-cards {
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }
}
/* ===============================
    2. end features Section CSS
================================== */


/* ===============================
    2.  training-tracks Section CSS
================================== */

.training-tracks {
    padding: 2.5rem 1rem;
    background-color: #f8f9fa;
  }


  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-header h2 {
      font-size: 35px;
      font-weight: var(--font-weight-bold);
      color: var(--primary-color);
      margin-bottom: 20px;
  }

  /* .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
  } */

  .section-header p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0 auto;
    line-height: 1.6;
    max-width: 600px;
  }

  .tracks-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .track-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }

  .track-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }

  .track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
  }

  .track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 14px rgba(190, 67, 238, 0.2);
  }

  .track-card:hover::before {
    height: 8px;
  }

  .track-content {
    width: 100%;
  }

  .track-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(161, 67, 238, 0.3);
  }

  .track-card:hover .track-icon {
    transform: rotate(10deg) scale(1.1);
    /* box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4); */
  }

  .track-card h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: var(--transition);
  }

  .track-card p {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: var(--transition);
  }


  [dir="rtl"] .track-details {
    text-align: right;
    padding: 0 0.5rem;
    margin-top: auto;
  }
  [dir="ltr"] .track-details {
    text-align: left;
    padding: 0 0.5rem;
    margin-top: auto;
  }

  .track-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  [dir="rtl"] .track-details li {
    padding: 0.3rem 0;
    color: var(--text-color);
    position: relative;
    padding-right: 1.2rem;
    font-size: 0.8rem;
    transition: var(--transition);
    font-weight: 500;
  }
  [dir="ltr"] .track-details li {
    padding: 0.3rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.8rem;
    transition: var(--transition);
    font-weight: 500;
  }
  [dir="rtl"] .track-details li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    line-height: 0.8;
  }
  [dir="ltr"] .track-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    line-height: 0.8;
  }

  .track-card:hover h3 {
    color: var(--primary-color);
  }

  .track-card:hover p {
    color: #666;
  }

  .track-card:hover .track-details li::before {
    color: var(--secondary-color);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 992px) {
    .track-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 1.6rem;
    }

    .section-header p {
      font-size: 0.9rem;
    }

    .track-icon {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      border-radius: 14px;
    }
  }

  @media (max-width: 576px) {
    .training-tracks {
      padding: 2rem 1rem;
    }

    .track-row {
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }

    .track-card {
      padding: 1.2rem 1rem;
    }

    .section-header h2 {
        font-size: 24px;
    }
  }
/* ===============================
    2. end training-tracks Section CSS
================================== */


/* ===============================
    4.  courses-section  CSS
================================== */

     /* CTA Section */
     .cta-section {
        background: #f8f8f8;
        color: var(--primary-color);
        padding: 3rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-top: 20px
    }

    .cta-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .cta-title {
        font-weight: 900;
        font-size: 2rem;
        margin-bottom: 1.5rem;

    }

    .cta-text {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.9;
        color: #333;
    }
.courses-section {
    padding: 2rem 0rem;

}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.course-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-image {
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-image img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.course-details h3 {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.course-details p {
    font-size: 0.9rem;
    color: #555;
    margin: 3px 0 0;
}

/* Animation (optional) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-list-section {
    padding: 2rem 0;

}


@media (max-width: 767.98px) {
    .section-title,
    .cta-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }
}
/* ===============================
    4. end courses-section  CSS
================================== */
  /*************************************************Roadmaps Hero Section Styles *************************************/
  .roadmap-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
}

.roadmap-hero__title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 0.5em;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.roadmap-hero__title .title-span {
    color: var(--primary-color);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    font-weight: 800;
}
.roadmap-hero__description {
    font-size: 1.2em;
    color: var(--subtext-color);
    margin-bottom: 1em;
    /* max-width: 400px; */
}

.roadmap-hero__svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.roadmap-hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

.roadmap-hero__cta-container {
    display: flex;
    justify-content: center;
    margin-top: 2em;
    width: 100%;
}

.roadmap-hero__cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid var(--primary-color);
    font-weight: bold;
    box-shadow: inset 0px 0.5px 0px rgba(255, 255, 255, 0.32),
        inset 0px -1.5px 0px rgba(255, 255, 255, 0.32);
    z-index: 1;
    transition: all 0.3s ease;
}
.roadmap-hero__cta:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.roadmap-hero__icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.roadmap-hero__icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    pointer-events: auto;
    animation: slideDown 1s ease-out, skate 2s infinite ease-in-out;
}
.roadmap-hero__note {
    /* font-size: 1em; */
    /* color: var(--subtext-color); */
}
.roadmap-hero__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roadmap-hero__icon:hover {
    transform: scale(1.1);
}

.roadmap-hero__icon--vue {
    left: 15%;
    top: 70%;
}

.roadmap-hero__icon--js {
    left: 15%;
    top: 40%;
}

.roadmap-hero__icon--flutter {
    left: 5%;
    top: 55%;
}

.roadmap-hero__icon--dart {
    left: 30%;
    top: 60%;
}

.roadmap-hero__icon--react {
    right: 15%;
    top: 70%;
}

.roadmap-hero__icon--node {
    right: 15%;
    top: 40%;
}

.roadmap-hero__icon--laravel {
    right: 30%;
    top: 60%;
}

.roadmap-hero__icon--php {
    right: 5%;
    top: 55%;
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .roadmap-hero {
        height:80vh;
    }
}
@media (max-width: 992px) {
    .roadmap-hero {
        height:75vh;
    }
}
/* Extra Small Devices (Phones, 320px and up) */
@media (max-width: 575px) {
    .roadmap-hero__title {
        font-size: 1.5em;
    }
    .roadmap-hero {
        height:67vh;
    }

    .roadmap-hero__description {
        font-size: 1em;
    }

    .roadmap-hero__cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .roadmap-hero__icon {
        width: 15px;
        height: 15px;
    }

    .roadmap-hero__svg {
        height: 99%;
        top: 77%;
    }
    .roadmap-hero__icon--vue {
        left: 15%;
        top: 82%;
    }

    .roadmap-hero__icon--js {
        left: 15%;
        top: 74%;
    }

    .roadmap-hero__icon--flutter {
        left: 5%;
        top: 78%;
    }

    .roadmap-hero__icon--dart {
        left: 30%;
        top: 79%;
    }

    .roadmap-hero__icon--react {
        right: 15%;
        top: 82%;
    }

    .roadmap-hero__icon--node {
        right: 15%;
        top: 74%;
    }

    .roadmap-hero__icon--laravel {
        right: 30%;
        top: 78%;
    }

    .roadmap-hero__icon--php {
        right: 5%;
        top: 78%;
    }
}

/* Small Devices (Tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .roadmap-hero__title {
        font-size: 2.2em;
    }

    .roadmap-hero__description {
        font-size: 1em;
    }

    .roadmap-hero__cta {
        padding: 12px 24px;
        font-size: 1em;
    }

    .roadmap-hero__icon {
        width: 50px;
        height: 50px;
    }

    .roadmap-hero__svg {
        height: 70%;
    }
}

/* Medium Devices (Desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .roadmap-hero__title {
        font-size: 2.5em;
    }

    .roadmap-hero__description {
        font-size: 1.1em;
    }

    .roadmap-hero__cta {
        padding: 14px 28px;
    }

    .roadmap-hero__icon {
        width: 55px;
        height: 55px;
    }

    .roadmap-hero__svg {
        height: 80%;
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .roadmap-hero__title {
        font-size: 2.8em;
    }

    .roadmap-hero__description {
        font-size: 1.2em;
    }

    .roadmap-hero__cta {
        padding: 16px 32px;
    }

    .roadmap-hero__icon {
        width: 60px;
        height: 60px;
    }

    .roadmap-hero__svg {
        height: 90%;
    }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* .roadmap-hero__cta {
        padding: 18px 36px;
    } */

    .roadmap-hero__icon {
        width: 65px;
        height: 65px;
    }

    .roadmap-hero__svg {
        height: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .roadmap-hero__icon {
        width: 35px;
        height: 35px;
    }

    .roadmap-hero__icon--vue {
        left: 15%;
        top: 55%;
    }

    .roadmap-hero__icon--js {
        left: 15%;
        top: 45%;
    }

    .roadmap-hero__icon--flutter {
        left: 5%;
        top: 50%;
    }

    .roadmap-hero__icon--dart {
        left: 25%;
        top: 52%;
    }

    .roadmap-hero__icon--react {
        right: 15%;
        top: 55%;
    }

    .roadmap-hero__icon--node {
        right: 15%;
        top: 45%;
    }

    .roadmap-hero__icon--laravel {
        right: 25%;
        top: 52%;
    }

    .roadmap-hero__icon--php {
        right: 5%;
        top: 50%;
    }
}
/**** Animations for hero icons *****/
/* Keyframes for sliding down */
@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Keyframes for a smooth skating motion */
@keyframes skate {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px); /* Move right */
    }
}

/************************************************* Training Paths Section Styles *************************************/
