/*<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body, * {
    font-family: 'Poppins', sans-serif !important;
}
/* ===== GLOBAL STYLES ===== */
a:-webkit-any-link {
/*    color: -webkit-link;*/
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 576px) {
.btn-default {
    background-color: transparent;
}
}

.col-xs-7 {
    width: inherit;
    float: right;
}

/* === MAIN LAYOUT === */
.main {
    font-family: 'Poppins', sans-serif;
    color: #888;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .main {
        margin-top: 40px;
    }
}

/* === HEADER STYLES === */
.header {
    background-color: #fff;
    height: 50px
}

.container {
    padding: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== MAIN NAVIGATION TABS ===== */
/* === Wider Navigation Tabs === */
.nav-tabs {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    -webkit-overflow-scrolling: touch;
    Smooth scrolling
}

.nav-tabs>li {
    flex: 1;
    text-align: center;
    margin-bottom: -1px;
}

.nav-tabs>li>a {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    height: 110px;
}

.nav-tabs>li>a:hover {
    color: #ffb600;
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: #F5F5F5;
}

.nav-tabs>li.active>a {
    border-top: 3px solid #007bff;
    background-color: #f8f9fa;
}

.nav-tabs>li>a small {
    font-size: 12px;
    color: #8a939b;
    display: block;
    margin-top: 5px;
    max-width: 245px;
    font-weight: normal;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    border-top: 4px solid #FFC83D;
}

/* === Inner Tab Navigation (Side Menu) === */
.nav-pills.nav-stacked {
    margin-top: 10px;
    width: 100%;
}

.nav-pills.nav-stacked>li>a {
    text-align: left;
    padding: 15px 15px;
    font-size: 14px;
    background-color: #F4F4F4;
    color: #666;
}

.nav-pills.nav-stacked>li>a:hover {
    background-color: #ffc600;
    color: #fff;
}

/* ===== TAB CONTENT STYLES ===== */
.tab-content {
    padding: 20px;
    border-top: none;
    background-color: #fff;
    min-height: 250px;
}

/* Ensures the banner takes full width and maintains aspect ratio */
.container-fluid img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Smooth scrolling for tabs */
.nav-tabs>li>a {
    transition: all 0.3s ease;
}

.nav-tabs>li.active>a {
    transition: all 0.3s ease;
}

/* ===== SME COMPARISON TABLE STYLES ===== */
/* Wrapper to contain scrolling */
.sme-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}

/* Scrollable container */
.sme-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sme-container::-webkit-scrollbar {
    display: none;
}

/* Tables */
.sme-table {
    min-width: 300px;
    flex: 0 0 32%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sme-table th {
    background-color: #fafafa;
    color: #323232;
    padding: 25px 25px 15px;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    border-bottom: 3px solid #ffc600;
    height: 50px;
    line-height: 1;
}

.sme-table td {
    padding: 15px 25px;
    border: none;
    text-align: left;
}

.sme-table span {
    font-size: 13px;
    font-weight: normal;
    color: #5F5F5F;
}

.sme-table hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 12px 0;
}

.sme-table strong {
    color: #555;
}

.cta-buttons {
    text-align: center;
    margin-top: 10px;
}

.apply-btn,
.discover-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.apply-btn,
.apply-btn:hover {
    background-color: #389A6E;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

.discover-btn,
.discover-btn:hover {
    background-color: white;
    color: #000;
    border: 1px solid #ddd;
    text-transform: uppercase;
    text-decoration: none;
}

/* ===== SCROLLING & NAVIGATION STYLES ===== */
/* Navigation Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 198, 0, 1);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s;
    display: block;
    z-index: 10;
    height: 55px;
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

.scroll-arrow.left {
    left: 10px;
}

.scroll-arrow.right {
    right: 10px;
}

.scroll-arrow.hidden {
    opacity: 0.5;
    pointer-events: none;
}

@media screen and (max-width: 640px) {
    .sme-table {
        flex: 0 0 100%;
    }
}

/* ===== ICONS & BUTTON STYLES ===== */
.glyphicon {
    position: relative;
    top: -2px;
}

.tab-pane h3 {
    color: #ffb600;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-pills.nav-stacked {
    margin-top: 20px;
    width: 100%;
}

.nav-pills>li>a {
    border-radius: 0;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #CCCCCC;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.btn-primary {
    background-color: #389A6E;
    color: white;
    border-color: white;
}

.nav-tabs a {
    color: #BABABA;
}

/* ===== BANNER CAROUSEL STYLES ===== */
.carousel-inner .item img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 45%;
    left: 15%;
    transform: translateY(-50%);
    color: white;
    max-width: 45%;
    padding: 20px;
}

.banner-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.banner-title span {
    color: #ffc600;
    font-weight: 700;
}

.banner-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators li {
    border: 1px solid #fff;
    background-color: transparent;
}

.carousel-indicators .active {
    background-color: #fff;
}

/* Carousel Controls */
.carousel-control {
    background: none !important;
    color: #fff;
    opacity: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.carousel-control:hover,
.carousel-control:focus {
    color: #ffc600;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 767px) {
    .tab-content {
        padding: 20px 0px;
    }

    .banner-text {
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        min-width: 90%;
        padding: 15px;
    }

    .banner-title {
        font-size: 36px;
        line-height: 40px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-control {
        font-size: 24px;
    }

    /* Adjust tab navigation for mobile */
    .nav-tabs>li>a {
        padding: 10px 5px;
        font-size: 14px;
        height: 60px;
    }

    .nav-tabs>li>a small {
        display: none;
    }
}

/* ===== HIGHLIGHTS SECTION STYLES ===== */
.h-btn.secondary {
    background: white;
    transition: all 0.25s ease;
    color: #333;
    border: 1px solid #ddd;
}

@media (max-width: 767px) {
    .h-btn {
        width: auto;
        margin-top: 15px;
        align-self: flex-start;
    }
}

.h-btn {
    flex: 0 0 auto;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    margin-top: 10px;
    width: max-content;
}

.highlights-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.highlights-section {
    margin-top: 30px;
}

.row[data-aos="fade-up"] {
    display: flex;
    flex-wrap: wrap;
}

.row[data-aos="fade-up"]>.col-sm-4 {
    display: flex;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    flex: 1;
    width: 100%;
}

.highlight-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-content h4 {
    margin-top: 0;
    font-weight: 600;
    color: #000000;
}

.card-content p {
    flex-grow: 1;
}

/* ===== SME SCROLLER COMPONENT STYLES ===== */
.sme-scroller-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

.sme-scroller-container {
    display: flex;
    gap: 1.0rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sme-scroller-container::-webkit-scrollbar {
    display: none;
}

.sme-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}

.sme-card {
    min-width: 370px;
    width: 100%;
    flex: 0 0 calc(33.333% - 1rem);
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: auto;
}

.sme-card.featured {
    border: 2px solid #FFC600;
    position: relative;
}

.sme-card.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FFC600;
    color: #333;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

.card-header {
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
}

.card-header h3 {
    margin: 0;
    color: #555;
    font-size: 1.0rem;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #389A6E;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.card-body {
    padding: 1.5rem;
}

.card-description {
    color: #555;
    margin-bottom: 1rem;
}

.feature-list {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.feature-list li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card-details {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
}

.card-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #444;
}

.card-details strong {
    color: #333;
}

.card-footer {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.8rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.card-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 165px;
}

.card-btn.primary {
    background: #389A6E;
    color: white;
    text-align: center;
}

.card-btn.primary:hover {
    background: #2e845d;
}

.card-btn.secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    text-align: center;
}

.card-btn.secondary:hover {
    border-color: #ffc600;
    color: #333;
	background: #ffc600 ;
}

/* ===== CUSTOM NAVIGATION ARROWS ===== */
.scroller-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #FFC600;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroller-nav:hover {
    background: #FFC600;
    transform: translateY(-50%) scale(1.1);
}

.scroller-prev {
    left: -10px;
}

.scroller-next {
    right: -10px;
}

.arrow-icon {
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(-135deg);
    display: block;
}

.scroller-next .arrow-icon {
    transform: rotate(45deg);
}

@keyframes nudge-left {
    0%, 100% { margin-left: 0; }
    50% { margin-left: -8px; }
}

@keyframes nudge-right {
    0%, 100% { margin-left: 0; }
    50% { margin-left: 8px; }
}

.scroller-prev .arrow-icon {
    transform: rotate(-135deg);
    animation: nudge-left 1s infinite;
}

.scroller-next .arrow-icon {
    transform: rotate(45deg);
    animation: nudge-right 1s infinite;
}

/* ===== SCROLL PROGRESS INDICATORS ===== */
.progress-indicator {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #389A6E;
    transition: width 0.3s ease;
}

.scroller-nav:hover .progress-indicator::after {
    background: #FFC600;
}

/* Scroll Tracker */
.scroll-tracker {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #FFC600, #FFC600);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .sme-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .sme-scroller-wrapper {
        padding: 0;
    }

    .sme-card {
        flex: 0 0 100%;
        min-width: 320px;
    }

    .scroller-nav {
        width: 40px;
        height: 40px;
    }

    .scroller-prev {
        left: -15px;
    }

    .scroller-next {
        right: -15px;
    }
}

.card-details p {
    margin: 0.5rem 0;
    font-size: inherit;
    color: #444;
}

.scroll-progress {
    width: 100%;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc600;
    color: #906800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

/* Hide small text on tablet and mobile */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}

/* Optional: Adjust tab height for tablet when small text is hidden */
@media (max-width: 992px) and (min-width: 768px) {
    .nav-tabs>li>a {
        height: 50px;
        padding: 10px 15px;
        font-weight: 600;
        font-size: 14px;
        height: 60px;
    }
}

/* ===== MOBILE HORIZONTAL TABS STYLES ===== */
.mobile-horizontal-tabs {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.mobile-horizontal-tabs::-webkit-scrollbar {
    display: none;
}

.mobile-horizontal-tabs>li {
    flex: 1 0 auto;
}

.mobile-horizontal-tabs>li>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-width: 110px;
    border-radius: 4px;
    background: #f8f9fa;
    color: #555;
    font-weight: 500;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.mobile-horizontal-tabs>li.active>a:focus,
.mobile-horizontal-tabs>li.active>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-width: 110px;
    border-radius: 4px;
    background: #ffffff;
    color: #cccccc;
    font-weight: 500;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.mobile-horizontal-tabs>li>a:hover {
    background: #ffc600;
    color: #ffffff;
    border-color: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.mobile-horizontal-tabs>li.active>a,
.mobile-horizontal-tabs>li.active>a:hover {
    background: #ffffff;
    color: #cccccc;
    border: 1px solid #eaeaea;
}

.tab-icon {
    font-size: 20px;
    margin-bottom: 6px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.mobile-horizontal-tabs>li.active .tab-icon {
    transform: scale(1.1);
}

.tab-label {
    font-size: 13px;
    line-height: 1.3;
}

/* Active tab indicator */
.mobile-horizontal-tabs>li.active {
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-horizontal-tabs>li>a {
        min-width: 90px;
        padding: 10px 12px;
    }

    .tab-icon {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .tab-label {
        font-size: 12px;
    }
}

/* Animation when tab becomes active */
@keyframes tabActive {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mobile-horizontal-tabs>li.active>a {
    animation: tabActive 0.3s ease-out;
}

/* ===== PARTNER & LOGO STYLES ===== */
.partner-logo {
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
}

/* ===== FLOATING ACTION BUTTON STYLES ===== */
.back_to_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 150px;
}

.back_to_top img {
    width: 60px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.back_to_top img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .back_to_top {
        width: 100px;
    }
}

.container-fluid img {
    width: auto;
}

/* ===== CAROUSEL PROGRESS INDICATORS ===== */
.carousel-progress-single {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.carousel-timer-bar {
    height: 100%;
    width: 0%;
    background-color: #FFC107;
    transition: width 0s;
}

/* ===== DISABLED STATE STYLES ===== */
.scroller-nav.disabled {
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* ===== COMPARISON TABLE COMPONENT STYLES ===== */
.comparison-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

@media only screen and (max-width: 1100px) {
    .comparison-section {
        margin-top: 60px;
    }
}

.comparison-section .comparison-wrapper {
    width: 74%;
}

.comparison-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #333;
    margin: 16px 0 30px;
    padding: 0;
    text-align: left;
}

@media only screen and (min-width: 1100px) {
    .comparison-disclaimer {
        margin: 16px auto 0;
        max-width: 334px;
        padding: 0 10px;
    }
}

.comparison-header {
    flex-shrink: 0;
    margin-top: 30px;
    margin-right: 20px;
}

@media only screen and (min-width: 1100px) {
    .comparison-header {
        width: 24%;
        margin-right: 20px;
    }
}

.comparison-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    line-height: 24px;
    min-height: 65px;
    margin-bottom: 0;
}

.comparison-header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.comparison-header ul li {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding: 10px 0 8px;
}

.comparison-header ul li:last-child {
    border: 0;
}

.comparison-header ul li:nth-child(4) {
    padding: 15px 0 0;
    min-height: 50px;
}

.comparison-header ul li:nth-child(2) {
    padding: 30px 0 15px;
    min-height: 70px;
}

.comparison-header ul li:last-child {
    padding: 25px 0 10px;
    min-height: 50px;
}

.comparison-slider .slick-slide {
    margin-right: 12px;
}

.comparison-card-wrapper.sp .comparison-card ul li:nth-child(2) {
    padding-top: 15px;
    padding-bottom: 0px;
}

.comparison-card-wrapper .badge {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #171717;
    padding: 4px 40px;
    border-radius: 5px;
    z-index: 2;
    min-height: 23px;
    background: transparent;
    text-align: center;
}

.comparison-card-wrapper .badge:not(:empty) {
    background: #fff0bc;
}

.comparison-card {
    background: #fffbee;
    border-radius: 6px;
    padding: 8px 15px 16px 15px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.comparison-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 0;
    min-height: 50px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    line-height: 14px;
    width: 100%;
}

.comparison-card ul li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.comparison-card ul li:last-child {
    border: 0;
    padding: 25px 0 0px;
    min-height: 54px;
}

.comparison-card ul li.sp-2 {
    padding-top: 20px;
}

.comparison-card ul li:nth-child(4) {
    padding: 15px 0 0;
    min-height: 50px;
}

.comparison-card ul li.sp-3 {
    padding-top: 10px;
}

.comparison-card ul li:nth-child(2) {
    padding: 30px 0 0px;
    min-height: 70px;
}

/* ===== ADVANCED TABLE COMPONENT STYLES ===== */
.table-wrapper {
    display: flex;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fff;
    position: relative;
}

/* Sticky Column */
.sticky-col {
    background: #fafafa;
    z-index: 2;
    flex-shrink: 0;
    min-width: 180px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 10px -5px rgba(0, 0, 0, 0.1);
}

.sticky-col .table-cell {
    padding: 16px 25px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    color: #000;
}

.sticky-col .header-cell {
    background: #f8f9fa;
    font-weight: bold;
}

/* Scrollable Section */
.scrollable-section {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

.scroll-snap-track {
    display: flex;
}

.table-col {
    display: flex;
    flex-direction: column;
    width: 302px;
    border-left: 1px solid #ddd;
}

.table-cell {
    padding: 16px 8px 16px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    box-sizing: border-box;
}

.header-cell {
    font-weight: 600;
    background: #f8f9fa;
    color: #555;
    font-size: 1.0rem;
    text-align: center;
}

.sticky-col tr:first-child .header-cell {
  border-bottom: none;
}

/* Scroll Buttons */
.scroll-btn-left {
    position: absolute;
    top: 55%;
    z-index: 5;
    background: #FFC600;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: none;
    transform: translateY(-50%);
}

.scroll-btn-right {
    position: absolute;
    top: 55%;
    z-index: 5;
    background: #FFC600;
    border: none;
    border-radius: 50%;
    padding: 10px 10px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: none;
    transform: translateY(-50%);
    visibility: visible;
}

.scroll-btn-left.left {
    left: 160px;
}

.scroll-btn-right.right {
    right: -20px;
}

.btn-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-row a {
    max-width: 165px;
}

@media (max-width: 768px) {
    .card-btn {
        font-size: 12px;
    }

    .scrollable-section {
        overflow-x: auto;
    }

    .scroll-snap-track {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .scroll-snap-track .table-col {
        scroll-snap-align: start;
        flex: 0 0 100%;
        box-sizing: border-box;
    }

    .sticky-col {
        min-width: 120px;
        flex-shrink: 0;
    }

    .scroll-btn-left.left {
        left: 100px;
    }

    .scroll-btn-left.right {
        right: 0px;
    }

    .sticky-col .table-cell {
        width: 120px;
        font-size: 13px;
        padding: 12px;
    }

    .table-col {
        width: 60px;
    }
}

.btn-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-row a {
    max-width: 120px;
}

/* ===== TOOLTIP & POPOVER STYLES ===== */
.tooltip-icon {
    cursor: help;
    position: relative;
    color: #337ab7;
    text-decoration: none;
}

.tooltip-icon:hover {
    border-bottom-color: #ffb600;
    color: #23527c;
    font-weight: normal;
}

.break {
    display: block;
}

/* === Base black popover === */
.popover {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}
.popover-title {
  background-color: #000 !important;
  color: #fff !important;
  border-bottom: 1px solid #333 !important;
}
.popover-content {
  color: #fff !important;
}

/* === Arrow cleanup (remove outer transparent layer) === */
.popover > .arrow:before {
  border-color: transparent !important;
}

/* === Inner arrow (solid black) === */
.popover > .arrow:after {
  border-color: transparent !important;
}

/* Top */
.popover.top > .arrow:after {
  border-top-color: #000 !important;
}

/* Right */
.popover.right > .arrow:after {
  border-right-color: #000 !important;
}

/* Bottom */
.popover.bottom > .arrow:after {
  border-bottom-color: #000 !important;
}

/* Left */
.popover.left > .arrow:after {
  border-left-color: #000 !important;
}

.tab-pane {
  display: block !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.tab-pane.active {
  visibility: visible;
  height: auto;
  overflow: visible;
}

/* ===== MOBILE HORIZONTAL TABS SCROLLING ENHANCEMENTS ===== */
.mobile-horizontal-tabs {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 20px;
    padding: 0 0 20px 0;
    margin: 0 0 10px 0;
}

.mobile-horizontal-tabs > li {
    scroll-snap-align: center;
    flex: 0 0 auto;
}

/* Active tab styling for better visibility */
.mobile-horizontal-tabs > li.active > a {
    transform: scale(1.05);
    font-weight: 600;
    background: #ffc600 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 198, 0, 0.3);
}

/* Smooth transition for active state changes */
.mobile-horizontal-tabs > li > a {
    transition: all 0.3s ease;
}

/* Ensure tabs container is properly sized */
.mobile-horizontal-tabs-container {
    position: relative;
    overflow: hidden;
}

/* Gradient fade effects at edges (optional) */
.mobile-horizontal-tabs-container::before,
.mobile-horizontal-tabs-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 2;
}

.mobile-horizontal-tabs-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.mobile-horizontal-tabs-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.infographic-header {
    border-bottom: 1px solid #eee;
    position: relative;
}

.infographic-scroller-container {
    display: flex;
	height: 300px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.infographic-scroller-container::-webkit-scrollbar {
    display: none;
}

.infographic-indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.infographic-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 6px;
  cursor: pointer;
}

.infographic-indicators li.active {
  background: #ffcb05; /* Maybank Yellow */
}

.infographic-header img {
    max-width: inherit;
    vertical-align: middle;

}

/* FIX KH COUNTRY SELECTOR MODAL
   (Override the overrides from MyImpact SME Bootstrap)
*/
#select-country.modal.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99999 !important;
}

#select-country.hide {
    display: none !important;  /* only when it really should hide */
}

/* Allow button to be fully clickable again */
#choose-country button.btn {
    pointer-events: auto !important;
}
#select-country.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important;
}
