/* 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 */
}

/* section 1 */
.bg {
    background-image: url('../image/bg-hero.png');
    background-size: cover;
}

/* section 2 */

.social-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.social-marquee {
    display: flex;
    gap: 3rem;
    width: max-content;
    white-space: nowrap;
}


/* section 7 */
:root {
    --main-navy: #1a237e;
    --light-bg: #eaeff7;
}


/* =========================
   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, #f1f4f7);

}

/* =========================
   Featured Column Styling
   ========================= */
.featured-col {
    position: relative;
    z-index: 10;
}

.featured-card {
    border: 2px solid var(--main-navy, #1e3a8a);
    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, #1e3a8a);
}

.active-check {
    color: var(--main-navy, #1e3a8a);
    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;
    }
}

#cardScroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}