/* =========================
   RESET HERO CLIPPING ISSUE
========================= */

/* Fix sticky header overlap properly */
body.sticky-header #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Push content below header (adjust if needed) */
body.sticky-header .content {
    padding-top: 110px;
}

/* Remove any clipping from theme */
.content,
.home-content {
    overflow: visible;
}

/* =========================
   HERO SECTION
========================= */

.qb-home-hero {
    background: linear-gradient(135deg, #f5fbfc 0%, #ffffff 60%, #eaf8f9 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e7f2f3;
}

/* Align columns nicely */
.qb-home-hero .row {
    display: flex;
    align-items: center;
}

/* =========================
   HERO TEXT
========================= */

.qb-hero-label {
    display: inline-block;
    background: #35A5AC;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qb-home-hero h1 {
    color: #1d3d44;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.qb-home-hero h2 {
    color: #35A5AC;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.qb-home-hero p {
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   HERO IMAGE
========================= */

.qb-hero-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    border: 1px solid #e8f3f4;
}

.qb-hero-card img {
    width: 100%;
    border-radius: 10px;
}

/* =========================
   BUTTONS
========================= */

.qb-hero-buttons .btn {
    margin: 5px 5px 5px 0;
}

/* =========================
   STATS
========================= */

.qb-stats-row {
    margin-top: 30px;
}

.qb-stat {
    background: #fff;
    border: 1px solid #e8f3f4;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.qb-stat i {
    color: #35A5AC;
    font-size: 26px;
    margin-bottom: 5px;
}

.qb-stat strong {
    display: block;
    font-size: 20px;
}

.qb-stat span {
    color: #666;
}

/* =========================
   SECTIONS
========================= */

.qb-section-title {
    text-align: center;
    margin: 50px 0 30px;
}

.qb-section-title h2 {
    color: #35A5AC;
    font-weight: 800;
}

.qb-section-title p {
    max-width: 800px;
    margin: auto;
}

/* =========================
   FEATURE CARDS
========================= */

.qb-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.qb-feature-icon {
    width: 55px;
    height: 55px;
    background: #35A5AC;
    color: #fff;
    text-align: center;
    line-height: 55px;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 15px;
}

/* =========================
   CTA BAND
========================= */

.qb-band {
    background: #35A5AC;
    color: #fff;
    padding: 40px 0;
    margin: 40px 0;
    text-align: center;
}

.qb-band .btn {
    background: #fff;
    color: #35A5AC;
}

/* =========================
   LOGOS
========================= */

.qb-logo-strip .logos {
    text-align: center;
    padding: 0;
    list-style: none;
}

.qb-logo-strip .logos li {
    display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {

    body.sticky-header .content {
        padding-top: 90px;
    }

    .qb-home-hero .row {
        display: block;
    }

    .qb-home-hero h1 {
        font-size: 28px;
    }

    .qb-home-hero h2 {
        font-size: 20px;
    }

    .qb-hero-card {
        margin-top: 20px;
    }
}
