.score-cards-component {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

/* Grid container */
.grid-layout,
.next_level {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

.header .border-bottom {
    border-bottom: 1px solid #868686 !important;
}

.score-card {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.score-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.score-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    min-height: 42px;
    line-height: 1.5em;
}

.score-value,
.score-level {
    font-size: 2.5rem;
    color: #3BBF8C;
    font-weight: 700;
    text-align: center;
}

.score-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e94e77;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.score-level {
    background: linear-gradient(90deg, #3BBF8C 18.39%, #1D6046 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
}

.info-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: #666666;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 0%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: normal;
}

.info-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.info-icon:hover::before {
    content: '';
    position: absolute;
    top: -20%;
    margin-left: 5px;
    border-width: 5px;
    border-style: solid;
    border-color: #666666 transparent transparent transparent;
}

.acc-header.collapsed {
    border-radius: 16px !important;
}


/* Container for the grid of dimension cards */
.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Individual dimension card */
.dimension-card {
    padding: 20px 23px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 16px;
    background: linear-gradient(122deg, rgba(21, 21, 21, 0.90) -0.61%, #262626 103.61%);
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.25);
}

/* Dimension header with badge and info icon */
.dimension-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    justify-content: space-between;
}

/* Badge styles */
.status-badge {
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 9px;
    /* margin-left: 10px; */
}


.need-improvement {
    background-color: #e94e77;
    color: white;
}

.strengths {
    background-color: #28a745;
    color: white;
}

.info-icon {
    font-size: 1rem;
    color: #aaa;
    cursor: pointer;
}

/* Content inside the card */
.dimension-content h3 {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-weight: normal;
}

.score-maturity {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 20px;
    margin-top: 10px;
}

.dimension-score {
    font-size: 1.5rem;
    font-weight: 600;
}

.maturity-level {
    padding: 0px 20px;
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.basic {
    background: linear-gradient(90deg, #7F7F7F 0%, #595959 100%);
}

.intermediate {
    background: linear-gradient(90deg, #007FFF 0%, #003F7F 100%);
}

.developing {
    background: linear-gradient(90deg, #3BBF8C 0%, #1D6046 100%);
}

.advanced {
    background: linear-gradient(90deg, #8947FF 0%, #3A00A3 100%);
}

.badge-basic {
    background: #CC4D4D;
    line-height: normal;
}

.badge-developing {
    background: #FF6912;
    line-height: normal;
}

.badge-intermediate {
    background: #E69107;
    line-height: normal;
}

.badge-advanced {
    background: #2BA441;
    line-height: normal;
}


.small-text {
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
}

.schedule-btn {
    background-color: #fff;
    border-radius: 50px;
    color: #262626;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.18px;
    border: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 15px 30px;
    text-decoration: none;
}

.card-container {
    border-radius: var(--Border-Radius-Radius-lg, 16px);
    background: linear-gradient(125deg, #262626 38.85%, #404040 90.35%);
    padding: 27px 33px;
}

.score-head-bar {
    display: flex;
    width: 100%;
    height: 14px;
    border-radius: var(--Border-Radius-Radius-lg, 16px);
    background: var(--Surface-Subtle, #D9D9D9);
}

.score-head-process {
    width: 30%;
    height: 14px;
    border-radius: var(--Border-Radius-Radius-lg, 16px);
    background: linear-gradient(90deg, #3BBF8C 0%, #007FFF 100%);
}

.border-bottom {
    border-bottom: 0.5px solid #868686 !important;
}

.border-right {
    border-right: 0.5px solid #868686 !important;

}

.border-top {
    border-top: 0.5px solid #868686 !important;
}

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

    .dashboard .accordion-sec .collapsebody {
        padding: 32px 24px;
    }

    .dimension-card {
        padding: 15px;
    }

    .dimension-score {
        font-size: 2rem;
    }

    .maturity-level {
        font-size: 16px;
    }

    .dimension-header {
        font-size: 12px;
    }

    .dimension-content h3 {
        font-size: 16px;
    }

    .score-head-bar {
        margin-top: 16px;
    }

    .score-description{
        font-size:13px;
    }
}

@media (max-width: 426px) {
    .score-cards-component {
        flex-direction: column;
        gap: 20px;
    }

    .score-card {
        padding: 20px;
        width: 100%;
    }

    .score-value,
    .score-level {
        font-size: 2.5rem;
    }

    .score-title {
        font-size: 18px;
    }


    .acc-header{
        text-align:left !important
    }
    .dashboard .accordion-sec .acc-header i {
        margin-left:0px
    }
    #mobileTabDropdown{
        padding:30px !important
    }


}
@media (max-width: 321px) {
    .score-level {
        font-size: 1.9rem;
    }
}

/************** Menu *************/
.dashboard {
    position: relative;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.7);
    display: none;
    z-index: 9998;
}

.navbar.menu {
    position: fixed;
    height: calc(100vh - 80px);
    display: block;
    border-radius: 0px 0px var(--Border-Radius-Radius-lg, 16px) 0px;
    background: linear-gradient(178deg, #000 25.79%, #404040 102.8%);
    z-index: 9999;
    left: -100%;
    transition-timing-function: linear;
    cursor: pointer;
}

.navbar.menu.show {
    left: 0;
}

.menu-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s;
    transition-timing-function: linear;
}

.navbar.menu .menu-wrapper,
.menu-wrapper .heading,
.menu-wrapper .menu-abx-container,
.menu-wrapper .menu-abx-container ul li {
    width: 280px;
    visibility: visible;
}

.navbar.menu.show .menu-wrapper,
.navbar.menu,
.menu-wrapper .heading,
.menu-wrapper .menu-abx-container,
.menu-wrapper .menu-abx-container ul li,
#menu-abx,
#menu-abx li {
    transition-timing-function: ease-in-out;
    transition: all 0.5s;
}

.navbar .open-close {
    position: fixed;
    top: 82px;
    left: 0;
    transition-timing-function: ease-in-out;
}

.navbar.menu.show .open-close {
    position: absolute;
    top: 0;
    left: 100%;
}

.navbar .open {
    width: 61px;
    height: 78px;
    background: #ffffff;
    border-radius: 0 50px 50px 0;
    display: block;
    transition-timing-function: ease-in-out;
}

.navbar .open-close.show .open {
    visibility: hidden;
    transition: all 0.5s;
    display: none;
}

.navbar .close {
    float: none;
    text-shadow: none;
    opacity: 1;
    visibility: hidden;
    display: none;
    transition: all 0.5s;
    transition-timing-function: ease-in-out;
}

.navbar .open-close.show .close {
    visibility: visible;
    display: block;
}

.abx-menu-wrapper,
.abx-menu-wrapper ul li,
.abx-menu-wrapper ul li a {
    color: var(--White-300, #BFBFBF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 21px */
}

.abx-menu-wrapper .heading {
    color: var(--White-500, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 22.5px */
    padding: 21px;
}

.abx-menu-wrapper.menu {
    list-style: none;
    height: 100%;
}

#abx .abx-menu-wrapper .menu li {
    margin-bottom: 0px;
    padding: 21px;
    max-width: 100%;
}

.abx-menu-wrapper .menu li a {
    position: relative;
    display: inline-flex;
}

.abx-menu-wrapper .menu li.current-menu-item {
    background: linear-gradient(90deg, rgba(245, 0, 0, 0.00) 0%, rgba(245, 0, 0, 0.4) 113.54%);
    color: #fff;
}

.abx-menu-wrapper .menu li.current-menu-item a {
    color: #fff;
}

.abx-menu-wrapper .menu .current_page_item svg,
.abx-menu-wrapper .menu .current_page_item img {
    filter: invert(19%) sepia(73%) saturate(7447%) hue-rotate(358deg) brightness(88%) contrast(123%);
}

.abx-menu-wrapper .menu li a svg,
.abx-menu-wrapper .menu li a img {
    margin-right: 16px;
    height: 24px;
    width: 24px;
}

.abx-menu-wrapper .menu li a label {
    display: inline-block;
    margin-bottom: 0;
}

.abx-menu-wrapper .menu .last.menu-item {
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

.abx-menu-wrapper .menu .last.menu-item .menu-contact {
    padding: 24px 13px;
    border-radius: 15px;
    background: linear-gradient(23deg, rgba(0, 0, 0, 0.4) 38%, rgba(127, 127, 127, 0.4) 100%);
    display: flex;
}

.abx-menu-wrapper .menu .last.menu-item .icon {
    width: 31.72px;
    height: 31.72px;
    border-radius: 12px;
    background: var(--black-amp-white-white, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    margin-right: 20px; 
    padding: 5px;
}

.abx-menu-wrapper .menu .last.menu-item .icon span {
    background: rgba(245, 0, 0, 1);
    border-radius: 50px;
    padding: 0px 6px;
}

.abx-menu-wrapper .menu .last.menu-item a {
    display: block;
}

.abx-menu-wrapper .menu .last.menu-item a svg {
    margin-right: 0;
}

.abx-menu-wrapper .menu .last.menu-item .heading {
    padding: 0;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    max-width: 100%;
}

.abx-menu-wrapper .menu .last.menu-item .subtext {
    margin-bottom: 12px;
    font-family: Helvetica;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 8px;
    color: white;
}

.abx-menu-wrapper .menu .menu-contact .button {
    border-radius: 52px;
    background: var(--black-amp-white-white, #FFF);
    color: var(--Gray-Gray-700, #2D3748);
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 15px */
    padding: 5px;
    max-width: 100px;
}

@media only screen and (max-width: 1366px) {
    #abx .abx-menu-wrapper .menu li {
        margin-bottom: 0px;
        padding: 10px 21px;
    }
}

@media only screen and (max-width: 600px) {

    .navbar .open-close,
    .navbar.menu.show .open-close {
        position: fixed;
        top: 3px;
        right: 0px;
        left: auto;
        background: #151515;
        border: none;
    }

    .navbar .open {
        background: #151515;
    }

    .navbar .open svg path:first-child,
    .navbar .close svg path:first-child {
        fill: none;
    }

    .navbar .open-close .open svg,
    .navbar .open-close .close svg {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    .navbar.menu.show .abx-menu-wrapper,
    .navbar.menu,
    .abx-menu-wrapper .heading,
    .abx-menu-wrapper .menu-abx-container,
    .abx-menu-wrapper ul li,
    .abx-menu-wrapper .menu,
    .abx-menu-wrapper .menu li {
        width: 100vw;
    }

    #abx .abx-menu-wrapper .menu li {
        width: 100%;
    }

    .abx-menu-wrapper .menu .menu-contact .button {
        display: inline-block;
        width: 152px;
    }

    #abx .abx-menu-wrapper .menu li {
        margin-bottom: 0px;
        padding: 21px;
    }

    .navbar .offcanvas-body {
        display: none;
    }

}

@media(max-width: 768px) {
    .mobile_hide {
        display: none;
    }
}