:root {
    --brand-violet: #242c74;
    --brand-orange: #f97316;
    --brand-violet-dark: #37116e;
    --bs-pagination-active-bg: #37116e;
    --bs-list-group-active-bg: #37116e;

    /* Override Bootstrap Core Colors */
    --bs-primary: var(--brand-orange);
    --bs-primary-rgb: 249, 115, 22;
    --bs-link-color: var(--brand-violet);
    --bs-link-hover-color: var(--brand-violet-dark);
}
.list-group-item.active {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: #37116e;
}
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--bs-list-group-active-bg) !important;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    list-style: none;
}
body {
    font-family: "Inter", sans-serif;
    --bs-body-font-family: "Inter", sans-serif;
}

.navbar {
    padding: 15px 0px;

}

.header-sticky{
    z-index: 1050;
}

.nav-item {
    padding: 0px 20px;
}

.bg-brand-violet {
    background-color: var(--brand-violet) !important;
    color: #fff !important;
}
.bg-brand-orange {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
}

.text-brand-violet {
    color: var(--brand-violet) !important;
}

.bg-brand-violet-dark {
    background-color: var(--brand-violet-dark) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.btn-brand-orange {
    background-color: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}

.btn-brand-orange:hover {
    background-color: #e86a14;
    color: #fff;
    border-color: #e86a14;
}

.btn-brand-violet {
    background-color: var(--brand-violet);
    color: #fff;
    border-color: var(--brand-violet);
}

.btn-brand-violet:hover {
    background-color: var(--brand-violet-dark);
    color: #fff;
    border-color: var(--brand-violet-dark);
}

.btn-outline-brand-orange {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.btn-outline-brand-orange:hover {
    background-color: var(--brand-orange);
    color: #fff;
}

/* ====== Links ====== */
a {
    color: var(--brand-violet);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-orange);
    text-decoration: underline;
}

/* ====== Form Focus ====== */
.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

/* === Nav Pills === */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--brand-orange);
    color: #fff;
    font-weight: 600;
}

.nav-pills .nav-link {
    color: var(--brand-violet);
    border-radius: 0.5rem;
}

.nav-pills .nav-link:hover {
    color: var(--brand-orange);
    background-color: rgba(249, 115, 22, 0.1);
}


.border-brand-orange {
    border-color: var(--brand-orange) !important;
}

.card {
    border-radius: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
}
.card-hover {
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.hero-video-thumb {
    position: relative;
    cursor: pointer;
}

.hero-video-thumb .play-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.hero-video-thumb:hover .play-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.5);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partners-tab-container {
    position: relative;
    display: flex;
    background-color: #f3f4f6;
    /* bg-gray-100 */
    border-radius: 9999px;
    padding: 0.25rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.partners-tab-slider {
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 50%;
    background-color: var(--brand-violet);
    border-radius: 9999px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
}

.partners-tab-btn {
    position: relative;
    z-index: 10;
    width: 50%;
    border-radius: 9999px;
    font-weight: 600;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    transition: color 0.3s ease-in-out;
    border: none;
}

.partners-tab-btn.active {
    color: white;
}

.partners-tab-btn:not(.active) {
    color: #4b5563;
    /* text-gray-600 */
}

.partners-tab-btn:focus {
    box-shadow: none;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* New Carousel Styles */

#videoTestimonials .carousel-control-prev-icon,
#videoTestimonials .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

#videoTestimonials .carousel-indicators [data-bs-target] {
    background-color: var(--brand-orange);
}

#text-testimonials-container-desktop {
    padding: 0 50px;
}

#textTestimonialsDesktop .carousel-control-prev,
#textTestimonialsDesktop .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

#textTestimonialsDesktop .carousel-control-prev {
    left: -60px;
}

#textTestimonialsDesktop .carousel-control-next {
    right: -60px;
}

#textTestimonialsDesktop .carousel-control-prev-icon,
#textTestimonialsDesktop .carousel-control-next-icon {
    background-color: var(--brand-violet);
    border-radius: 50%;
    padding: 1.25rem;
    background-size: 50%;
}

/* Carousel control styling */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

/* Font Awesome icon styling */
.fas.fa-chevron-left,
.fas.fa-chevron-right {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.carousel-control-prev:hover .fas.fa-chevron-left,
.carousel-control-next:hover .fas.fa-chevron-right {
    color: #ff6200;
    /* Matches brand color from previous artifacts */
}

/* Remove default Bootstrap icon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .fas.fa-chevron-left,
    .fas.fa-chevron-right {
        font-size: 1.2rem;
    }
}

@media (max-width: 1399.98px) {
    #text-testimonials-container-desktop {
        padding: 0;
    }

    #textTestimonialsDesktop .carousel-control-prev {
        left: -25px;
    }

    #textTestimonialsDesktop .carousel-control-next {
        right: -25px;
    }
}

/* Testimonial video image consistency */
.testimonial-video-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

/* Slower carousel transition speed */
#videoTestimonials .carousel-item,
#textTestimonialsDesktop .carousel-item,
#textTestimonialsMobile .carousel-item {
    transition: transform 1.5s ease-in-out;
}

/* Fix for disappearing gap in multi-item carousel */
#textTestimonialsDesktop .carousel-item .row {
    /* Override Bootstrap's negative margins on rows to create a visual gap between sliding items. */
    margin-right: 0;
    margin-left: 0;
}

#textTestimonialsMobile .carousel-item {
    /* Add horizontal padding to create a visual gap between sliding cards on mobile. */
    padding: 0 0.75rem;
}

footer .btn.rounded-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link.active {
    color: var(--brand-violet-dark) !important;


}

/* Professional Offcanvas Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 340px;
        background-color: #fff;
        z-index: 2050 !important;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex !important;
        flex-direction: column;
        height: 100vh;
        padding: 0;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse .navbar-nav {
        margin: 0 !important;
        padding: 1rem 0.5rem;
        flex-grow: 1;
        overflow-y: auto;
        align-items: flex-start;
    }

    .navbar-collapse .nav-item {
        width: 100%;
    }

    .navbar-collapse .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 0;
        color: #343a40;
    }

    .navbar-collapse .d-flex.align-items-center {
        /* Mobile action buttons */
        padding: 1rem 1.5rem;
        margin-top: auto;
        border-top: 1px solid #dee2e6;
        width: 100%;
        background: #f8f9fa;
    }

    .navbar-collapse .d-flex.align-items-center .btn-brand-orange {
        flex-grow: 1;
    }

    /* Mobile text testimonial card height consistency */
    #textTestimonialsMobile .card.h-100 {
        height: 400px !important;
        /* Set a fixed height to prevent cards from being too long and ensure consistency. */
        display: flex;
        flex-direction: column;
    }

    #textTestimonialsMobile .card-body {
        flex-grow: 1;
        /* Allow card body to fill available space */
        overflow-y: auto;
        /* Add a scrollbar if the text content is too long for the card height */
    }

    /* Mobile text testimonial controls */
    #textTestimonialsMobile {
        padding-bottom: 40px;
        /* Space for indicators */
        position: relative;
    }

    #textTestimonialsMobile .carousel-indicators {
        bottom: 0;
        margin-bottom: 0.5rem;
    }

    #textTestimonialsMobile .carousel-indicators [data-bs-target] {
        background-color: #ccc;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 0;
        margin: 0 4px;
        opacity: 0.7;
        transition: opacity 0.6s ease;
    }

    #textTestimonialsMobile .carousel-indicators .active {
        background-color: var(--brand-orange);
        opacity: 1;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/*linear-gradient(rgba(76, 29, 149, 0.9), rgba(55, 17, 110, 0.9)),*/
.hero-section {
    background: url('/themes/DiptiTheme/images/dipti_header.png') no-repeat center center;
    background-size: cover;
}

.offer-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.offer-card .partner-logo {
    max-height: 40px;
    width: auto;
    max-width: 120px;
}

.coupon-code {
    background-color: #e9ecef;
    border: 2px dashed #adb5bd;
    font-family: "Courier New", Courier, monospace;
    letter-spacing: 2px;
}

.counter {
    color: #333;
    transition: all 0.2s ease;
}

/* Ensure icons and text align well */
.fas {
    flex-shrink: 0;
}

/* Smooth number animation */
.counter-animate {
    animation: count-up 2s ease-out forwards;
}

@keyframes count-up {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .col-sm-4 {
        flex-direction: column;
        text-align: center;
    }

    .fas {
        margin-bottom: 0.5rem;
    }
}

.Partnerships {
    padding: 100px 0px;
}

.card-title a {
    color: #333;
    transition: all 0.3s;
}

.card-title a:hover {
    color: var(--brand-orange) !important;
}


.value-card,
.leader-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.value-card:hover,
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #dee2e6;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid var(--brand-orange);
}

.bg-brand-violet {
    background-color: var(--brand-violet) !important;
}

.text-brand-violet {
    color: var(--brand-violet) !important;
}

.bg-brand-violet-dark {
    background-color: var(--brand-violet-dark) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.btn-brand-orange {
    background-color: var(--brand-orange);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    border-color: var(--brand-orange);
}

.btn-brand-orange:hover {
    background-color: #e86a14;
    color: #fff;
    border-color: #e86a14;
}

.blog-card {
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.blog-card:hover .blog-card-title {
    color: var(--brand-violet);
}

/* Sidebar styles */
.sidebar-widget {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.sidebar-widget .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-widget .list-group-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-widget .list-group-item a:hover {
    color: var(--brand-violet);
}

/* Article styles */
.article-content h2 {
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-violet-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--brand-orange);
    padding-left: 1.5rem;
    font-style: italic;
    color: #6c757d;
    background-color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0.25rem 0.25rem 0;
}

.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Share buttons */
.share-buttons .btn {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-buttons .btn-facebook:hover {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2 !important;
}

.share-buttons .btn-twitter:hover {
    background-color: #1da1f2;
    color: #fff;
    border-color: #1da1f2 !important;
}

.share-buttons .btn-linkedin:hover {
    background-color: var(--brand-violet);
    color: #fff;
    border-color: var(--brand-violet) !important;
}

.bg-brand-violet-dark {
    background-color: var(--brand-violet-dark) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.btn-brand-orange {
    background-color: var(--brand-orange);
    color: #fff;
}

.btn-brand-orange:hover {
    background-color: #e86a14;
    color: #fff;
}

.btn-brand-violet {
    background-color: var(--brand-violet);
    color: #fff;
}

.btn-brand-violet:hover {
    background-color: var(--brand-violet-dark);
    color: #fff;
}

.text-brand-violet {
    color: var(--brand-violet) !important;
}

.blog-card {
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.blog-card:hover .blog-card-title {
    color: var(--brand-violet);
}

.featured-post-card {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    border-radius: 0.5rem;
}

.carousel-item {
    transition:
        transform 0.6s ease-in-out,
        -webkit-transform 0.6s ease-in-out;
}

/* Sidebar styles */
.sidebar-widget {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.sidebar-widget .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-widget .list-group-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-widget .list-group-item a:hover {
    color: var(--brand-violet);
}

.sidebar-widget .list-group-item.active a {
    color: var(--brand-violet-dark);
    font-weight: 600;
    padding: 0px 20px;
    color: white;
}

.course-card {
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.quick-link-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.15) !important;
}

.quick-link-card:hover .quick-link-icon {
    background-color: var(--brand-orange) !important;
}

.quick-link-card:hover .quick-link-icon i {
    color: #fff !important;
}

.quick-link-card:hover h5 {
    color: var(--brand-violet) !important;
}

.instructor-card {
    background-color: #f8f9fa;
    border-radius: 1rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1) !important;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.feature-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-violet);
    background-color: #f3e8ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--brand-orange);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background-color: var(--brand-orange);
    color: white !important;
    border-style: solid;
    transform: scale(1.1);
}

.event-card {
    transition:
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}


.video-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

.play-button {
    width: 80px;
    height: 80px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.4);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 100;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-violet);
    background-color: #f3e8ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.facilitator-card,
.course-card,
.quick-link-card-event {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.facilitator-card:hover,
.course-card:hover,
.quick-link-card-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.modal-video .modal-body {
    padding: 0;
}

.modal-video .modal-content {
    border: none;
    background: transparent;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px;
        /* Space for the sticky CTA bar */
    }
}



.video-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

.play-button {
    width: 80px;
    height: 80px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.4);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 100;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-violet);
    background-color: #f3e8ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.instructor-card,
.review-card,
.free-content-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.instructor-card:hover,
.review-card:hover,
.free-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

/* Mobile sticky CTA bar */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 90px;
        /* Adjust based on the height of the CTA bar */
    }
}

.modal-video .modal-body {
    padding: 0;
}

.modal-video .modal-content {
    border: none;
    background: transparent;
}

.article-content h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content ul {
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content ul {
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Corporate Page Specific Styles */
.corporate-hero {
    background: linear-gradient(135deg,
            hsl(225, 62%, 25%) 0%,
            hsl(225, 70%, 18%) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    border: none !important;
}

/* Background blur circles */
.hero-bg-circle-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: #f97316;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.hero-bg-circle-2 {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: #f97316;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.hero-badge {
    background: rgba(249, 115, 22, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.hero-stats-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Glassmorphism card container */
.hero-visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Feature cards inside */
.hero-feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    transform: translateX(0);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.hero-feature-card:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-feature-card:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.hero-feature-card:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.feature-icon-blue {
    background: rgba(30, 58, 95, 0.1);
    color: #1e3a5f;
}

/* Floating badge */
.floating-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Wave bottom */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    overflow: hidden;
    /* optional but safe */
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero content animation */
.hero-content {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content .text-highlight {
    color: #f97316;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button styles */
.btn-hero {
    background: #f97316;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-pill {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--brand-orange);
    color: white;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-orange);
}

.program-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f, #0d2137);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.skill-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.course-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card-new .card-img-top {
    height: 180px;
    object-fit: cover;
}

.price-badge {
    background: linear-gradient(135deg, var(--brand-orange), #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.partner-logo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.partner-logo-card img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.learn-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
}

.trainer-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.trainer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand-orange);
    margin-bottom: 1rem;
}

.certification-section {
    background: #f8fafc;
}

.cta-section {
    background: linear-gradient(135deg, var(--brand-orange), #ea580c);
}

.section-badge {
    background: linear-gradient(135deg, #fef3c7, #ffcbb3);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.browse-tabs .nav-link {
    color: #64748b;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.browse-tabs .nav-link.active {
    background: var(--brand-violet);
    color: white;
}

.browse-tabs .nav-link:hover:not(.active) {
    background: #f1f5f9;
}

.btn-hero:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-pill {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--brand-orange);
    color: white;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-orange);
}

.program-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f, #0d2137);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.skill-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.course-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card-new .card-img-top {
    height: 180px;
    object-fit: cover;
}

.price-badge {
    background: linear-gradient(135deg, var(--brand-orange), #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.partner-logo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.partner-logo-card img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.learn-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
}

.trainer-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.trainer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand-orange);
    margin-bottom: 1rem;
}

.certification-section {
    background: #f8fafc;
}

.cta-section {
    background: linear-gradient(135deg, var(--brand-orange), #ea580c);
}

.section-badge {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.browse-tabs .nav-link {
    color: #64748b;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.browse-tabs .nav-link.active {
    background: var(--brand-violet);
    color: white;
}

.browse-tabs .nav-link:hover:not(.active) {
    background: #f1f5f9;
}

.rating-stars {
    color: #fbbf24;
}

.app-mockup {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PROGRAMS TAB SECTION - Premium Tab System
   ============================================ */

/* Tab Wrapper - Centers the tab container */
.programs-tab-wrapper {
    display: flex;
    justify-content: center;
}

/* Modern Tab Container */
.programs-tab-container {
    position: relative;
    display: inline-flex;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 6px;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sliding Tab Indicator */
.programs-tab-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: linear-gradient(135deg,
            var(--brand-violet) 0%,
            var(--brand-violet-dark) 100%);
    border-radius: 12px;
    box-shadow:
        0 4px 15px rgba(36, 44, 116, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.programs-tab-slider.slide-right {
    transform: translateX(calc(100% + 6px));
}

/* Tab Buttons */
.programs-tab-btn {
    position: relative;
    z-index: 2;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.programs-tab-btn:hover:not(.active) {
    color: var(--brand-violet);
}

.programs-tab-btn.active {
    color: #ffffff;
}

.programs-tab-btn i {
    transition: transform 0.3s ease;
}

.programs-tab-btn:hover i {
    transform: scale(1.1);
}

/* Tab Content Animation */
.programs-tab-content .tab-pane {
    animation: fadeInTab 0.4s ease forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Program Cards */
.program-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* .program-card-modern h5 {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
} */

.program-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), #fbbf24);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card-modern:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(249, 115, 22, 0.1);
    border-color: transparent;
}

.program-card-modern:hover::before {
    opacity: 1;
}

/* Program Card Icons with Color Variants */
.program-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.15) 0%,
            rgba(249, 115, 22, 0.05) 100%);
    color: #f97316;
    transition: all 0.3s ease;
}

.program-card-modern:hover .program-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Color Variants */
.program-card-icon.icon-purple {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.15) 0%,
            rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
}

.program-card-icon.icon-blue {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

.program-card-icon.icon-green {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.15) 0%,
            rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
}

.program-card-icon.icon-red {
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.15) 0%,
            rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

.program-card-icon.icon-teal {
    background: linear-gradient(135deg,
            rgba(20, 184, 166, 0.15) 0%,
            rgba(20, 184, 166, 0.05) 100%);
    color: #14b8a6;
}

.program-card-icon.icon-indigo {
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.15) 0%,
            rgba(99, 102, 241, 0.05) 100%);
    color: #6366f1;
}

.program-card-icon.icon-amber {
    background: linear-gradient(135deg,
            rgba(245, 158, 11, 0.15) 0%,
            rgba(245, 158, 11, 0.05) 100%);
    color: #f59e0b;
}

.program-card-icon.icon-cyan {
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.15) 0%,
            rgba(6, 182, 212, 0.05) 100%);
    color: #06b6d4;
}

.program-card-icon.icon-yellow {
    background: linear-gradient(135deg,
            rgba(234, 179, 8, 0.15) 0%,
            rgba(234, 179, 8, 0.05) 100%);
    color: #eab308;
}

.program-card-icon.icon-emerald {
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.15) 0%,
            rgba(16, 185, 129, 0.05) 100%);
    color: #10b981;
}

.program-card-icon.icon-violet {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.15) 0%,
            rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
}

/* Program Duration Badge */
.program-duration {
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--brand-orange);
    font-weight: 600;
}

/* Program Tags */
.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 1rem;
}

.program-tag {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-card-modern:hover .program-tag {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

/* Program Card Link */
.program-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-violet);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.program-card-link:hover {
    color: var(--brand-orange);
    gap: 8px;
}

.program-card-link i {
    transition: transform 0.3s ease;
}

.program-card-link:hover i {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .programs-tab-container {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .programs-tab-slider {
        width: calc(100% - 12px);
        height: calc(50% - 6px);
    }

    .programs-tab-slider.slide-right {
        transform: translateY(calc(100% + 6px));
    }

    .programs-tab-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .program-card-modern {
        padding: 20px;
    }

    .program-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }


    .programs-tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================
   AI-POWERED LEARNING SECTION
   ============================================ */

/* AI Course Cards */
.ai-course-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ai-course-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/* AI Card Icons */
.ai-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ai-course-card:hover .ai-card-icon {
    transform: scale(1.08);
}

/* AI Icon Color Variants */
.ai-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ai-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.ai-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ai-icon-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

/* AI Card Tags Container */
.ai-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

/* AI Tags */
.ai-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ai-tag-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-color: #fcd34d;
}

.ai-course-card:hover .ai-tag {
    border-color: #cbd5e1;
}

.ai-course-card:hover .ai-tag-highlight {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    border-color: #fbbf24;
}

/* AI Card Title */
.ai-course-card h5 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* AI Card Description */
.ai-course-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Adjustments for AI Section */
@media (max-width: 991.98px) {
    .ai-course-card {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .ai-course-card {
        padding: 20px;
    }

    .ai-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .ai-tag {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* ============================================
   JOB ROLE TRAINING SECTION
   ============================================ */

/* Job Role Cards */
.job-role-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.job-role-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/* Job Role Icon */
.job-role-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transition: all 0.3s ease;
}

.job-role-card:hover .job-role-icon {
    transform: scale(1.08);
}

/* Job Role Title */
.job-role-title {
    color: #1e293b;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Section Labels */
.job-role-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

/* Job Role Tags */
.job-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.job-role-tag {
    background: #f8fafc;
    color: #1f2937;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.job-role-card:hover .job-role-tag {
    border-color: #cbd5e1;
}

/* Job Role Industries */
.job-role-industries {
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Job Role Next (Career Path) */
.job-role-next {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.job-role-next i {
    color: #f97316;
    font-size: 0.875rem;
}

.job-role-next span {
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-role-next a {
    color: #f97316;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-role-next a:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Responsive Adjustments for Job Role Section */
@media (max-width: 991.98px) {
    .job-role-card {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .job-role-card {
        padding: 20px;
    }

    .job-role-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .job-role-tag {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .job-role-title {
        font-size: 1.05rem;
    }
}

/* ============================================
   CORPORATE & B2B SOLUTIONS SECTION
   ============================================ */

.corporate-b2b-section {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    position: relative;
    overflow: hidden;
}

/* Background overlay/pattern can be added here if needed */

.b2b-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.b2b-list li {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.b2b-list li i {
    color: #f97316;
    font-size: 0.5rem;
    margin-right: 10px;
    margin-top: 2px;
    /* Visual alignment */
}

/* Industry Cards */
.b2b-industry-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.b2b-industry-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.b2b-industry-card i {
    font-size: 1.75rem;
    color: #f97316;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.b2b-industry-card:hover i {
    transform: scale(1.1);
    color: #fbbf24;
}

.b2b-industry-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .corporate-b2b-section {
        text-align: left;
    }

    .b2b-industry-card {
        padding: 1rem;
    }

    .b2b-industry-card i {
        font-size: 1.5rem;
    }

    .b2b-industry-card span {
        font-size: 0.8rem;
    }
}

/* ============================================
   TRAINING MODES & SKILL MAPPING SECTIONS
   ============================================ */

/* Section Labels */
.section-label-orange {
    font-size: 0.8rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Training Mode Cards */
.mode-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Mode Icon Box */
.mode-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.mode-card:hover .mode-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.bg-blue-soft {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-orange-soft {
    background-color: rgba(249, 115, 22, 0.1);
}

.text-brand-blue {
    color: #3b82f6 !important;
}

/* Skill Mapping Section */
.skill-mapping-wrapper {
    position: relative;
}

.skill-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.skill-stat-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.card-icon {
    font-size: 2rem;
    color: #475569;
    transition: color 0.3s ease;
}

.skill-stat-card:hover .card-icon {
    color: #f97316;
}

/* Feature Box "Why Choose" */
.feature-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.feature-box ul li i {
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .mode-card {
        padding: 2rem 1rem;
    }

    .mode-icon-box {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .feature-box {
        padding: 2rem !important;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-box {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.cta-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* ============================================
   JOB ROLES PAGE STYLES
   ============================================ */

/* Header */
.job-role-header {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    position: relative;
    overflow: hidden;
}

.job-role-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(#3b82f6 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

/* Base Text Colors */
.text-orange {
    color: #f97316 !important;
}

.text-muted-light {
    color: #cbd5e1 !important;
}

/* Wide Job Card */
.job-role-wide-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    /* More rounded */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.job-role-wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Deeper shadow on hover */
    border-color: rgba(59, 130, 246, 0.2);
}

/* Wide Card Icon */
.wide-card-icon {
    width: 56px;
    /* Slightly larger */
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
    border-radius: 16px;
    /* Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.job-role-wide-card:hover .wide-card-icon {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
}

/* Skill Tags */
.skill-tag-gray {
    background-color: #f8fafc;
    color: #475569;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    transition: all 0.2s ease;
}

.skill-tag-gray:hover {
    background-color: #e2e8f0;
}

.skill-tag-orange {
    background-color: #fff7ed;
    color: #ea580c;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #ffedd5;
    font-weight: 600;
    transition: all 0.2s ease;
}

.skill-tag-orange:hover {
    background-color: #ffedd5;
}

/* Responsive Borders */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #f1f5f9;
    }
}

@media (max-width: 991.98px) {
    .border-end-lg {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 0 !important;
        /* Reset margin for stacking */
    }

    .job-role-wide-card .row>div {
        padding: 1.5rem !important;
        /* Consistent padding on mobile */
    }
}

/* Career Flow font size */
.career-flow {
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 500;
    color: #64748b !important;
}

.career-flow i {
    font-size: 0.7rem;
    position: relative;
    top: -1px;
}

/* ============================================
   AI TRAINING PAGE STYLES
   ============================================ */

/* AI Hero */
.ai-hero-section {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    position: relative;
    overflow: hidden;
}

.ai-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 40%);
    pointer-events: none;
}

.ai-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffd7aa;
    /* Light Orange text */
}

.ai-hero-badge i {
    color: #f97316;
}

/* AI Focus Cards */
.ai-focus-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.ai-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #fff7ed;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Tools Box */
.ai-tools-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
}

.ai-tools-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.ai-tag {
    font-size: 0.75rem;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Certificate Card */
.ai-certificate-card {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.ai-certificate-card ul li i {
    font-size: 8px !important;
    /* Tiny dot */
}

/* ============================================
   SKILL MAPPING PAGE STYLES
   ============================================ */

/* Search Bar */
.search-bar-lg {
    transition: all 0.3s ease;
}

.search-bar-lg:focus-within {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #3b82f6 !important;
}

/* Stat Icons */
.stat-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Accordion Customization */
.sector-accordion-item .accordion-button {
    background-color: #ffffff;
    box-shadow: none !important;
    /* Remove focus ring */
}

.sector-accordion-item .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    /* Keep white when expanded */
    color: inherit;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    /* Subtle separator */
}

.sector-accordion-item .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.sector-accordion-item .accordion-button::after {
    background-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.5;
}

/* Sector Icons */
.sector-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Table Refinements */
.skill-table th {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.skill-table td {
    font-size: 0.9rem;
}

.space-nowrap {
    white-space: nowrap;
}

/* Custom bg-blue-soft if not exists */
.bg-blue-soft {
    background-color: #eff6ff;
}

/* Nav Pills Customization for Sector Accordion */
.nav-pills .nav-link {
    background-color: #f3f4f6;
    /* Light gray for inactive */
    color: #4b5563;
    /* Dark gray text */
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-pills .nav-link:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.nav-pills .nav-link.active {
    background-color: #f97316 !important;
    /* Brand Orange */
    color: #ffffff !important;
    border-color: #f97316 !important;
}

/* Partner Card Styling */
.partner-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.partner-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Utility Classes to replace inline styles */
.mobile-menu-backdrop {
    display: none;
    z-index: 1040;
}

.navbar-brand-logo {
    height: 2rem;
}

.hero-lead-text {
    max-width: 700px;
}

.cta-lead-text {
    max-width: 600px;
}

.max-w-1000 {
    max-width: 1000px;
}

.bullet-icon {
    font-size: 6px;
    vertical-align: middle;
}

.footer-logo {
    height: 2.5rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
}

/* ============================================
   SKILL MAPPING PAGE - PREMIUM UI STYLES
   ============================================ */

/* Hero Section */
.skill-mapping-hero {
    background: linear-gradient(135deg,
            hsl(225, 62%, 20%) 0%,
            hsl(225, 70%, 12%) 50%);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.skill-mapping-hero h1,
.skill-mapping-hero .lead,
.skill-mapping-hero .badge {
    position: relative;
    z-index: 1;
}

.skill-mapping-hero h1 {
    color: white !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.skill-mapping-hero .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Animated Stats */
.stat-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-mapping-hero .stat-icon-circle {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.skill-mapping-hero .stat-icon-circle i {
    color: #f97316 !important;
}

.skill-mapping-hero h4 {
    color: white !important;
}

.skill-mapping-hero .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.stat-icon-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
}

/* Premium Search Bar */
.search-bar-lg {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.search-bar-lg:focus-within {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: var(--brand-orange) !important;
}

.search-bar-lg input {
    background: transparent;
    font-size: 1rem;
}

.search-bar-lg input::placeholder {
    color: #94a3b8;
}

/* Sector Accordion Enhanced */
.sector-accordion-item {
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease;
    background: white;
}

.sector-accordion-item:hover {
    border-radius: 12px !important;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.sector-accordion-item .accordion-button {
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.sector-accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 20%) 100%) !important;
    color: white !important;
    border-radius: 12px 12px 0 0 !important;
}

.sector-accordion-item .accordion-button:not(.collapsed) h5,
.sector-accordion-item .accordion-button:not(.collapsed) p {
    color: white !important;
}

.sector-accordion-item .accordion-button:not(.collapsed) .sector-icon {
    background: rgba(255, 255, 255, 0.2) !important;
}

.sector-accordion-item .accordion-button:not(.collapsed) .sector-icon i {
    color: white !important;
}

.sector-accordion-item .accordion-button:not(.collapsed) .badge {
    background: rgba(249, 115, 22, 0.3) !important;
    color: white !important;
}

.sector-accordion-item .accordion-button::after {
    transition: all 0.3s ease;
}

.sector-accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Sector Icon */
.sector-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sector-icon i {
    transition: all 0.3s ease;
}

.sector-accordion-item:hover .sector-icon {
    transform: scale(1.1);
}

/* Blue Soft Background for IT */
.bg-blue-soft {
    background: rgba(59, 130, 246, 0.1);
}

.bg-blue-dark {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
}

/* Premium Skill Table */
.skill-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.skill-table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.skill-table thead th {
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.skill-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.skill-table tbody tr:hover {
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 100%);
    transform: scale(1.005);
}

.skill-table tbody tr:last-child {
    border-bottom: none;
}

.skill-table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

/* Course/Skill Badges Enhanced */
.skill-table .badge {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
}

.skill-table .badge:hover {
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%) !important;
    border-color: #f97316 !important;
    color: #9a3412 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* Partner Cards Enhanced */
.partner-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Inquiry Button Enhanced */
.btn-inquiry {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 18%) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inquiry:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(36, 44, 116, 0.35);
}

/* Floating Elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

/* Quick Stats in Accordion */
.sector-quick-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.sector-quick-stat {
    text-align: center;
}

.sector-quick-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.sector-quick-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .skill-mapping-hero {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .skill-mapping-hero h1 {
        font-size: 2rem;
    }

    .stat-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .sector-quick-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sector-quick-stat {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

@media (max-width: 575.98px) {
    .search-bar-lg {
        flex-direction: column;
        border-radius: 16px !important;
        padding: 0.75rem !important;
    }

    .search-bar-lg input {
        width: 100%;
        padding: 0.75rem;
    }

    .skill-table {
        font-size: 0.875rem;
    }

    .skill-table td,
    .skill-table th {
        padding: 0.75rem 0.5rem;
    }

    .sector-icon {
        width: 44px;
        height: 44px;
    }

    .sector-icon i {
        font-size: 1.25rem !important;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section for Skill Mapping */
.skill-mapping-cta {
    background: linear-gradient(135deg,
            hsl(225, 62%, 20%) 0%,
            hsl(225, 70%, 15%) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.skill-mapping-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(249, 115, 22, 0.2) 0%, transparent 60%);
}

.space-nowrap {
    white-space: nowrap;
}

/* Utility classes to replace inline styles */
.search-container {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 1;
}

.stats-content p {
    color: white !important;
}

.cta-container {
    position: relative;
    z-index: 1;
}

/* ============================================
   TRUSTED PARTNERS SECTION
   ============================================ */

.trusted-partners-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff1f2 100%);
}

/* Partner Testimonial Card */
.partner-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    flex-direction: column;
}

.partner-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

/* Quote Icon */
.partner-testimonial-card .quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-testimonial-card .quote-icon i {
    color: #f97316;
    font-size: 1rem;
}

/* Partner Badge */
.partner-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-badge.corporate {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #3b82f6;
}

.partner-badge.development {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    color: #d97706;
}

.partner-badge.government {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    color: #16a34a;
}

/* Testimonial Text */
.testimonial-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

/* Partner Info */
.partner-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.partner-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 6px;
}

.partner-logo .logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    font-size: 1.25rem;
}

.partner-details {
    flex: 1;
}

.partner-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.125rem;
    font-size: 0.95rem;
}

.partner-division {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Responsive Adjustments for Trusted Partners */
@media (max-width: 767.98px) {
    .partner-testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Lead text max width utility */
.lead-text-container {
    max-width: 600px;
}

/* ============================================
   PRICING PLANS SECTION
   ============================================ */

.pricing-plans-section {
    background: #fff;
}

/* Free Add-ons Card */
.free-addons-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid #e2e8f0;
}

/* Pricing Tabs */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-tabs {
    background: #f1f5f9;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
}

.pricing-tab {
    padding: 0.625rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.pricing-tab:hover {
    color: #1e293b;
}

.pricing-tab.active {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 20%) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(36, 44, 116, 0.25);
}

.pricing-tab i {
    font-size: 0.75rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(36, 44, 116, 0.2);
}

.pricing-card.popular {
    border-color: hsl(225, 62%, 25%);
    box-shadow: 0 10px 30px rgba(36, 44, 116, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 25px 50px rgba(36, 44, 116, 0.2);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 20%) 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Pricing Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.plan-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.group-size {
    font-size: 0.8rem;
    color: #f97316;
    margin-bottom: 0;
}

/* Pricing Card Price */
.pricing-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card-price .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    vertical-align: top;
}

.pricing-card-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.pricing-card-price .period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    color: #475569;
}

.pricing-features li i {
    width: 18px;
    text-align: center;
    font-size: 0.875rem;
}

/* Pricing Buttons */
.btn-pricing-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing-outline:hover {
    border-color: hsl(225, 62%, 25%);
    background: hsl(225, 62%, 25%);
    color: white;
}

.btn-pricing-filled {
    background: linear-gradient(135deg, hsl(225, 62%, 25%) 0%, hsl(225, 70%, 20%) 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(36, 44, 116, 0.3);
    color: white;
}

/* Responsive Adjustments for Pricing */
@media (max-width: 991.98px) {
    .pricing-tabs {
        flex-wrap: wrap;
        border-radius: 16px;
        gap: 6px;
    }

    .pricing-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card-price .amount {
        font-size: 2rem;
    }

    .free-addons-card {
        padding: 1.25rem;
    }
}

/* GoEdu brand color utility */
.goedu-brand {
    color: #f97316;
}

/* ============================================
   SECTOR PARTNER CARDS - ENHANCED UI
   ============================================ */

/* Partner Section Header */
.partner-section-header {
    margin-bottom: 1.5rem;
}

.partner-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.partner-section-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Partner Card Grid */
.partner-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .partner-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .partner-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Sector Partner Card */
.sector-partner-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sector-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all 0.3s ease;
}

.sector-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.sector-partner-card:hover::before {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-violet));
}

/* Partner Icon Styles */
.partner-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.sector-partner-card:hover .partner-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Background Variants */
.partner-icon-ministry {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
}

.partner-icon-department {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.partner-icon-association {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.partner-icon-purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.partner-icon-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
}

.partner-icon-orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #ea580c;
}

.partner-icon-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.partner-icon-teal {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    color: #0d9488;
}

/* Partner Content */
.partner-content {
    flex: 1;
    min-width: 0;
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.375rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Partner Table Icon (for IT sector table format) */
.partner-table-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Type Badges */
.partner-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.partner-type-ministry {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

.partner-type-department {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.partner-type-association {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #15803d;
}

.partner-type-corporate {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.partner-type-ngo {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #c2410c;
}

.partner-type-development-partner {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    color: #0f766e;
}

/* Partner Card Shimmer Effect */
.sector-partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

.sector-partner-card:hover::after {
    left: 100%;
}

/* Responsive Partner Cards */
@media (max-width: 767.98px) {
    .sector-partner-card {
        padding: 1rem;
    }

    .partner-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .partner-name {
        font-size: 0.85rem;
    }

    .partner-type-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Pricing Tabs Logic */
.pricing-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.logo-header,
.logo-mobile {
    height: 2rem;
}

.hero-desc {
    max-width: 40rem;
}

.map-container {
    height: 450px;
    width: 100%;
}

.map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.footer-logo {
    height: 2.5rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-backdrop {
    display: none;
    z-index: 1040;
}

.hidden-form {
    display: none;
}
