/* section 0 */

/* Initial state */
#main-header {
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background-color: #e4e2e2 !important;
}

#main-header.scrolled .nav-link {
    color: #000 !important;
}

#main-header.scrolled .btn {
    background-color: #000 !important;
    color: #fff !important;
}

#main-header.scrolled .navbar-brand img {
    filter: invert(1); /* Optional: invert logo color for dark on white background */
}

.social-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.social-marquee {
    display: flex;
    gap: 3rem;
    width: max-content;
    white-space: nowrap;
}

:root {
    --main-navy: #00167b;
    --light-bg: #f1f7ff;
}


/* =========================
Monetization Section CSS
========================= */

.monetization-section {
    padding: 5rem 0;
    background: #fff;
}

/* Main Title */
.main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Scrollable Wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar */
.table-responsive::-webkit-scrollbar {
    height: 6px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* =========================
   Comparison Grid
   ========================= */
.comparison-grid {
    display: flex;
    min-width: 800px; /* forces horizontal scroll on small screens */
    padding: 0 10px;
    align-items: stretch;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =========================
   Header Space (Icons / Titles)
   ========================= */
.header-space {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labels-col .header-space {
    justify-content: flex-start;
    padding-left: 15px;
}

/* =========================
   Row Items
   ========================= */
.row-item {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: 500;
}

.platform-col .row-item,
.featured-col .row-item {
    justify-content: center;
}

/* Zebra Striping Background */
.bg-light-blue {
    background-color: var(--light-bg, #f1f6fb);

}

/* =========================
   Featured Column Styling
   ========================= */
.featured-col {
    position: relative;
    z-index: 10;
}

.featured-card {
    border: 2px solid var(--main-navy, #00167b);
    border-radius: 35px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 0; /* Remove previous negative margin */
    padding-bottom: 10px;
}

/* Force Row Height in Featured Card */
.featured-card .header-space,
.labels-col .header-space,
.platform-col .header-space {
    height: 100px;
}

.featured-card .row-item,
.platform-col .row-item,
.labels-col .row-item {
    height: 60px;
    margin: 0;
}

/* =========================
   Icons & Check Styling
   ========================= */
.main-brand-color {
    color: var(--main-navy, #00167b);
}

.active-check {
    color: var(--main-navy, #00167b);
    font-size: 1.25rem;
}

.disabled-check {
    color: #e0e6ed;
    font-size: 1.25rem;
}


/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 991px) {
    .comparison-grid {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        min-width: 500px;
    }
}

@media (max-width: 576px) {
    .comparison-grid {
        min-width: 400px;
    }
}

    /*.scroll-left {*/
    /*    left: 5px;*/
    /*}*/

    /*.scroll-right {*/
    /*    right: 5px;*/
    /*}*/

    /*.scroll-btn:hover {*/
    /*    background: #000;*/
    /*    color: #fff;*/
    /*}*/

    /*!* Hide scrollbar but keep scroll *!*/
    /*#cardScroller::-webkit-scrollbar {*/
    /*    display: none;*/
    /*}*/

    #cardScroller {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
