<style>  
.jbh-subdropdown {
    max-height: 60vh; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color:rgb(223, 231, 230) rgba(57, 207, 202, 0.1); /* Firefox */
  }
        .jbh-container {
        font-family: 'Poppins', 'Open Sans', sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        color: #333;
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }
    
    p, li, span {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
    }
    
    .jbh-header {
        background: linear-gradient(135deg, #39cfca 0%, #2ba8a4 100%);
        color: white;
        text-align: center;
        padding: 4rem 1rem;
        position: relative;
        overflow: hidden;
    }
    
    .jbh-header h1 {
        padding-top: 4vw;
        font-size: 2.5rem;
         margin-bottom: 0.5rem;  padding-top: 4vw;
        animation: fadeInDown 1s;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .jbh-header p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1s;
    }
    
    .jbh-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
    
    .jbh-section {
        margin-bottom: 3rem;
        animation: fadeIn 1.5s;
    }
    
    /* Text-Image layout modification */
    .jbh-about-content {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    .jbh-about-text {
        flex: 1;
        order: 1;
    }
    
    .jbh-about-image {
        flex: 1;
        order: 2;
        text-align: center;
        transition: all 0.3s ease;
        margin: 3vw 0 3vw 0;
    }
    
    
    
    .jbh-about-image img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        margin: 3vw 0 3vw 0;
    }
    
    
    
    /* Course features with image-right modification */
    .jbh-features-container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
    }
    
    .jbh-features-text {
        flex: 3;
        order: 1;
    }
    
    .jbh-features-image {
        flex: 2;
        order: 2;
        text-align: center;
    }
    
    .jbh-features-image img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .jbh-features-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(57, 207, 202, 0.3);
    }
    
    .jbh-section h2 {
        color: #333;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .jbh-section h2:hover {
        color: #2ba8a4;
        transform: translateX(5px);
    }
    
    .jbh-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 3px;
        background-color: #39cfca;
        transition: width 0.3s ease;
    }
    
    .jbh-section h2:hover::after {
        width: 120px;
    }
    
    .jbh-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .jbh-benefit-card {
        background-color: white;
        border-radius: 8px;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .jbh-benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #39cfca, #2ba8a4);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .jbh-benefit-card:hover::before {
        transform: scaleX(1);
    }
    
    .jbh-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(57, 207, 202, 0.2);
        background-color: #f9f9f9;
    }
    
    .jbh-benefit-card i {
        color: #39cfca;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    .jbh-benefit-card:hover i {
        transform: rotate(10deg) scale(1.1);
        color: #2ba8a4;
    }
    
    .jbh-benefit-card h3 {
        margin-bottom: 1rem;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .jbh-benefit-card:hover h3 {
        color: #2ba8a4;
    }
    
    .jbh-benefit-card p {
        transition: transform 0.3s ease;
    }
    
    .jbh-benefit-card:hover p {
        transform: translateX(5px);
    }
    
    .jbh-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .jbh-highlight-item {
        background-color: #f9f9f9;
        border-left: 4px solid #39cfca;
        padding: 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .jbh-highlight-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #39cfca, #2ba8a4);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .jbh-highlight-item:hover::before {
        transform: scaleX(1);
    }
    
    .jbh-highlight-item:hover {
        background-color: #e9f7f7;
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(57, 207, 202, 0.1);
    }
    
    .jbh-highlight-item p {
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .jbh-highlight-item:hover p {
        transform: translateX(10px);
    }
    
    .jbh-course-features {
        margin-top: 2rem;
    }
    
    .jbh-feature {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: 4px;
    }
    
    .jbh-feature:hover {
        background-color: rgba(57, 207, 202, 0.1);
        transform: translateX(5px);
    }
    
    .jbh-feature i {
        color: #39cfca;
        margin-right: 1rem;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .jbh-feature:hover i {
        transform: rotate(15deg) scale(1.2);
    }
    
    .jbh-feature p {
        transition: color 0.3s ease;
    }
    
    .jbh-feature:hover p {
        color: #2ba8a4;
    }
    
    /* Added side-by-side layout for career sections */
    .jbh-career-section {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .jbh-career-content {
        flex: 3;
        order: 1;
    }
    
    .jbh-career-image {
        flex: 2;
        order: 2;
        text-align: center;
    }
    
    .jbh-career-image img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .jbh-career-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(57, 207, 202, 0.3);
    }
    
    .jbh-career-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .jbh-career-card {
        background-color: white;
        border-radius: 8px;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .jbh-career-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #39cfca, #2ba8a4);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .jbh-career-card:hover::after {
        transform: scaleX(1);
    }
    
    .jbh-career-card:hover {
        transform: translateY(-10px);
        background: linear-gradient(135deg, #f9f9f9 0%, #e9f7f7 100%);
        box-shadow: 0 10px 25px rgba(57, 207, 202, 0.2);
    }
    
    .jbh-career-card img {
        max-width: 80px;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }
    
    .jbh-career-card:hover img {
        transform: scale(1.1) rotate(5deg);
    }
    
    .jbh-career-card h3 {
        color: #333;
        margin-bottom: 0.5rem;  padding-top: 4vw;
        transition: color 0.3s ease;
    }
    
    .jbh-career-card:hover h3 {
        color: #2ba8a4;
    }
    
    .jbh-training-modes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .jbh-mode-card {
        background-color: #f9f9f9;
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .jbh-mode-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #39cfca 0%, #2ba8a4 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }
    
    .jbh-mode-card:hover::before {
        opacity: 1;
    }
    
    .jbh-mode-card > * {
        position: relative;
        z-index: 1;
    }
    
    .jbh-mode-card:hover {
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(57, 207, 202, 0.3);
    }
    
    .jbh-mode-card i {
        font-size: 2rem;
        color: #39cfca;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .jbh-mode-card:hover i {
        color: white;
        transform: scale(1.2);
    }
    
    .jbh-mode-card h3 {
        transition: color 0.3s ease;
    }
    
    .jbh-mode-card:hover h3 {
        color: white;
    }
    
    .jbh-cta {
        background: linear-gradient(135deg, #39cfca 0%, #2ba8a4 100%);
        text-align: center;
        padding: 3rem 1rem;
        color: white;
        margin-top: 3rem;
        border-radius: 8px;
          
        transition: all 0.3s ease;
    }
    
    .jbh-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(57, 207, 202, 0.4);
    }
    
    .jbh-cta h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .jbh-cta:hover h2 {
        transform: scale(1.02);
    }
    
    .jbh-cta p {
        margin-bottom: 2rem;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .jbh-cta:hover p {
        transform: translateY(5px);
    }
    
    .jbh-button {
        display: inline-block;
        background-color: white;
        color: #39cfca;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }
    
    .jbh-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(57, 207, 202, 0.1) 0%, rgba(43, 168, 164, 0.1) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .jbh-button:hover::before {
        transform: scaleX(1);
    }
    
    .jbh-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        color: #2ba8a4;
    }
    
    .jbh-faq {
        margin-top: 3rem;
    }
    
    .jbh-faq-item {
        margin-bottom: 1.5rem;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .jbh-faq-item:hover {
        border-color: #39cfca;
        box-shadow: 0 5px 15px rgba(57, 207, 202, 0.1);
    }
    
    .jbh-faq-question {
        background-color: #f9f9f9;
        padding: 1rem;
        cursor: pointer;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .jbh-faq-question:hover {
        background-color: #e9f7f7;
        color: #2ba8a4;
    }
    
    .jbh-faq-question i {
        transition: transform 0.3s ease;
    }
    
    .jbh-faq-active .jbh-faq-question i {
        transform: rotate(180deg);
    }
    
    .jbh-faq-answer {
        padding: 1rem;
        border-top: 1px solid #eee;
        display: none;
        background-color: white;
        transition: all 0.3s ease;
    }
    
    .jbh-faq-active .jbh-faq-answer {
        display: block;
        animation: fadeIn 0.5s ease;
    }
    
    /* Animation classes */
    .animation {
        opacity: 0;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideLeft {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes zoomOut {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(57, 207, 202, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(57, 207, 202, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(57, 207, 202, 0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    
    /* Responsive design */
    @media screen and (max-width: 992px) {
        .jbh-about-content, 
        .jbh-features-container,
        .jbh-career-section {
            flex-direction: column;
        }
        
        .jbh-about-text,
        .jbh-features-text,
        .jbh-career-content {
            order: 2;
        }
        
        .jbh-about-image,
        .jbh-features-image,
        .jbh-career-image {
            order: 1;
            margin-bottom: 2rem;
        }
    }
    
    @media screen and (max-width: 768px) {
        .jbh-header h1 {
            font-size: 1.8rem;
        }
    
        .jbh-header p {
            font-size: 1rem;
        }
    
        .jbh-section h2 {
            font-size: 1.5rem;
        }
    
        .jbh-cta h2 {
            font-size: 1.5rem;
        }
    }
    </style>