/* ==========================================================================
   2026 Homepage Layout - Global Styles & Design System Base
   ========================================================================== */

:root {
    /* Type Scale & Fonts */
    --font-primary: 'Google Sans Flex', 'Inter', sans-serif;
    --font-heading: 'Anton', sans-serif;

    /* Base Typography Tokens */
    --base-font-size: 22px;
    --base-line-height: 1.7;

    /* Global Colors */
    --text-primary: #333333;
    --bg-primary: #ffffff;
}

/* Base Body Application */
body.home-page-new {
    margin: 0;
    padding: 0;

    font-family: var(--font-primary);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    color: var(--text-primary);
    background-color: var(--bg-primary);

    /* Font Smoothing for Premium UI Feel */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global Heading Reset */
body.home-page-new h1,
body.home-page-new h2,
body.home-page-new h3,
body.home-page-new h4,
body.home-page-new h5,
body.home-page-new h6,
.anton-font {
    /* font-family: var(--font-heading); */
    line-height: 1.2;
    margin-top: 0;
}

/* Sections */
.bg-light-gray {
    background-color: #f6f6f6;
}

.new-logo {
    margin-top: 4px;
}

/* Brand Colors */
.text-brand-blue {
    color: #004b87;
}

.text-brand-green {
    color: #5b922a;
}

.bg-brand-blue {
    background-color: #004b87;
}

.hp2026-hero {
    padding: 60px 0 30px;
    background-color: #f6f6f6;
}

.hp2026-hero .hero-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-top: 40px;
}

.hp2026-hero h1 {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.hp2026-hero h2 {
    font-size: 36px;
    margin: 0;
}

.hp2026-hero .hero-logo {
    max-width: 250px;
    margin-top: 20px;
}

.hp2026-hero .video-wrapper {
    position: relative;
    padding: 20px;
}

.hp2026-hero .hero-video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hp2026-hero .explore-btn {
    max-width: 180px;
    display: inline-block;
}

.blue-gap-banner {
    background-color: #004b87;
    padding: 25px 0;
    margin-top: -5px;
    /* Pulls closer to video if needed */
}

.blue-gap-banner h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 5px;
}

.blue-gap-banner h3 {
    color: #fff;
    font-size: 30px;
}

/* Responsive updates for generic xs and sm screens */
@media (max-width: 767px) {
    .hp2026-hero h1 {
        font-size: 28px;
    }

    .hp2026-hero h2 {
        font-size: 22px;
    }

    .hp2026-hero {
        text-align: center !important;
    }

    .hp2026-hero .hero-left-content {
        text-align: center;
        padding-top: 10px;
    }

    .hp2026-hero .hero-logo {
        margin: 20px auto;
    }

    .blue-gap-banner h2 {
        font-size: 24px;
    }

    .blue-gap-banner h3 {
        font-size: 18px;
    }
}




/* CSS Reset / Base */


/* Container Rules */
.header-container-fluid {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    margin-top: 151px;
    /* Offset for fixed desktop header + menu bar */
}

@media (max-width: 1199px) {
    .header-container-fluid {
        margin-top: 100px;
        /* Tighter offset on mobile when white menu is hidden */
    }
}

.header-row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}

.header-col-left,
.header-col-right {
    padding-left: 0;
    padding-right: 0;
}

/* Left Column */
.header-col-left {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 220px;
    height: 600px;
    /* Matching Right Column Height */
    padding: 36px 40px 36px 50px;
}

@media (max-width: 991px) {
    .header-col-left {
        height: auto;
        /* Fallback for smaller screens if stacking */
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .header-col-left {
        padding: 40px 24px;
        height: auto;
        min-height: auto;
    }
}

.header-heading {
    margin: 0;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: #1a3f8f;
    font-size: clamp(24px, 3.5vw, 67px);
    /* Slightly increased for 600px height */
    width: 100%;
}

.heading-line {
    display: block;
    line-height: 70px;
}

/* Right Column */
.header-col-right {
    /* background-color: #e8edf5; */
    position: relative;
    overflow: hidden;
    height: 600px;
    /* Fixed Height as Requested */
    display: flex;
}

@media (max-width: 767px) {
    .header-col-right {
        height: 400px;
        /* Adjusted for mobile stacking */
    }
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius:175px
}

/* Magic Badge */
.magic-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 10;
}

.magic-badge svg {
    width: 42px;
    height: 30px;
    fill: #FF0000;
    margin-right: 10px;
}

.magic-badge-text {
    font-weight: 900;
    color: #1a3f8f;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

/* Banner Section */
.blue-gap-banner {
    background-color: #175999;
    padding: 30px 0;
    color: #ffffff;
    text-align: center;
}

.blue-gap-banner h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(26px, 4vw, 46px);
    margin: 0;
    line-height: 1.2;
}

/* How it Works / Main Content */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.content-text h2 {
    font-family: 'Anton', sans-serif;
    color: #004b87;
    font-size: 32px;
    margin-top: 0;
}

.product-cards-col {
    padding-left: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
}

/* Research Results Section */
.results-section {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.results-section h2 {
    font-family: 'Anton', sans-serif;
    color: #004b87;
    font-size: 45px;
    margin-bottom: 20px;
}

.results-section h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 22px;
    text-transform: none;
    margin-bottom: 40px;
}

.chart-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.data-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 250px;
    margin-top: 30px;
}

.data-bar {
    width: 80px;
    text-align: center;
    position: relative;
}

.data-bar-fill {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.data-bar-blue .data-bar-fill {
    background-color: #004b87;
}

.data-bar-orange .data-bar-fill {
    background-color: #f26522;
}

.data-bar-label {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #004b87;
    margin-bottom: 10px;
}

.data-bar-desc {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    color: #555;
}

.researcher-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-top: 30px;
}

.researcher-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.researcher-card h4 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.researcher-card p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

.results-highlights {
    list-style: none;
    padding: 0;
}

.results-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
}

.results-highlights li::before {
    content: "\f058";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #5b922a;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.case-studies-section h2 {
    font-family: 'Anton', sans-serif;
    color: #004b87;
    font-size: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.case-studies-section h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 20px;
    text-transform: none;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-visual {
    position: relative;
    text-align: center;
}

.case-study-visual img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study-data {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.circle-stat {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #f26522;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.3);
}

.circle-stat .stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 45px;
    line-height: 1;
}

.circle-stat .stat-desc {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 0 15px;
}

.case-study-btn-row {
    margin-top: 50px;
    text-align: center;
}

/* Learning Outcomes Section */
.learning-outcomes-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.outcomes-heading {
    font-family: 'Google Sans Flex', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 50px;
}

.outcomes-left-col .blue-title {
    font-family: 'Anton', sans-serif;
    font-size: 45px;
    color: #1a5b9e;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: none;
}

.outcomes-left-col p {
    color: var(--text-primary);
    margin-bottom: 25px;
}

.outcomes-left-col strong {
    font-weight: 800;
    color: #333333;
}

.mt-50 {
    margin-top: 50px;
}

.support-list {
    list-style-type: none;
    padding-left: 0;
}

.support-list li {
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.support-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #666666;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.4;
}

/* Right column images */
.outcomes-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* right align the images as a base */
}

.stacked-img {
    height: auto;
    transition: transform 0.3s ease;
    position: relative;
}

.stacked-img:hover {
    transform: scale(1.03) translateY(-3px);
    z-index: 10 !important;
}

.img-sergio {
    width: 100%;
    margin-left: 0;
    margin-top: -10px;
    z-index: 3;
}

.img-s {
    width: 75%;
    margin-left: 0;
    margin-top: -40px;
    z-index: 2;
}

.img-frame {
    width: 90%;
    margin-left: 0;
    margin-top: -40px;
    z-index: 1;
}

@media (max-width: 991px) {
    .outcomes-right-col {
        display: none;
        /* simple fallback for tablet/mobile */
    }

    .outcomes-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }



}

/* ==========================================================================
   Full Width Image Section
   ========================================================================== */
.fullwidth-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    /* Eliminates the gap below inline images */
    overflow: hidden;
}

.img-fullwidth {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   Research Container Home Section (New Layout)
   ========================================================================== */
.home-section3-new {
    background-color: #1a5b9e;
    /* Blue background surrounding the container */
    padding: 60px 0;
    font-family: var(--font-primary);
}

.home-section3-new .trusted-heading {
    color: #ffffff;
}

.research-container-home-new {
    background-color: #ffffff;
    border: 4px solid #f28b20;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;

}

.research-title-new {
    color: #1a5b9e;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.research-subtitle-new {
    font-family: 'Google Sans Flex', 'Inter', sans-serif;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
}

.research-uni-logo {
    max-width: 250px;
    margin: 10px auto 30px;
    display: block;
}

.research-content-row {
    margin-top: 20px;
    text-align: left;
}

.research-left-col {
    padding-right: 30px;
}

.highlights-title {

    color: #1a5b9e;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 800;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    margin-bottom: 0px;
    position: relative;
    padding-left: 15px; 
}

.highlights-list li::before {
    content: "•";
    color: #1a5b9e;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.hl-point {
    font-weight: 800;
    color: #1a5b9e;
    display: block;
    margin-bottom: 0px;
}

.hl-desc {
    color: #1a5b9e;
    margin: 0;
}

/* Charts styling */
.research-charts-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 20px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-number {
    font-family: var(--font-primary);
    color: #f28b20;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
}

.chart-percent {
    font-size: 30px;
    vertical-align: super;
}

.chart-bar-wrap {
    position: relative;
}

.chart-badge {
    position: absolute;
    top: -15px;
    left: -20px;
    background-color: #1a5b9e;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    border: 3px solid #ffffff;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chart-bar {
    background-color: #f28b20;
    color: #ffffff;
    border-radius: 8px;
    width: 130px;
    /* Reduced to match case studies chart */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    /* Slightly lowered text size for snug fit */
    line-height: 1.2;
    padding: 15px 10px;
    box-shadow: 0 5px 15px rgba(242, 139, 32, 0.3);
}

.bar-48 {
    height: 150px;
}

.bar-112 {
    height: 250px;
}

.chart-label {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 24px;
    margin-top: 15px;
}

.research-action-row {
    margin-top: 50px;
}

.btn-common {
    display: inline-block;
    background-color: #7ab541;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-common:hover,
.btn-common:focus {
    background-color: #649633;
    color: #ffffff;
    text-decoration: none;
}

/* ==========================================================================
   Testimonials Home Section
   ========================================================================== */
.testimonials-home-row {
    margin-top: 60px;
}

.testimonials-inner-row {
    display: flex;
    flex-wrap: wrap;
}

.testimonials-inner-row>[class*='col-'] {
    display: flex;
}

.testimonial-card-home {
    background: #ffffff;
    border: 4px solid #f28b20;
    border-radius: 45px;
    padding: 10px 10px;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .testimonials-inner-row {
        display: block;
    }

    .testimonial-card-home {
        margin-bottom: 30px;
    }
}

.testi-img-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testi-img-wrap img {
    max-height: 100%;
}

.testi-img-wrap.testi-img-wrap-scholastic img {
    width: 80%;
}

.testi-img-wrap .circle-img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.testi-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-family: 'Anton', sans-serif;
    color: #1a5b9e;
    font-size: 75px;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    line-height: 25px;
}

.testi-text {
    font-family: 'Google Sans Flex', 'Inter', sans-serif;
    font-style: italic;
    color: #1a5b9e;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    flex-grow: 1;
}

.testi-author {
    font-family: 'Google Sans Flex', 'Inter', sans-serif;
    color: #1a5b9e;
    font-size: 16px;
    font-weight: 800;
    text-align: right;
    margin-top: 20px;
    line-height: 1.3;
}

.testimonials-btn-row {
    margin-top: 40px;
}

.testimonials-btn-row .btn-common {
    margin: 10px 15px;
}

@media (max-width: 767px) {
    .research-container-home-new {
        padding: 30px 20px;
    }

    .research-charts-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .research-left-col {
        padding-right: 15px;
        text-align: left;
    }

    .highlights-title {
        text-align: center;
    }

    .research-subtitle-new {
        font-size: 24px;
    }

    .teacher-shorts-video {
        max-width: 100% !important;
    }

    .chart-bottom-label {

        font-size: 20px;
    }


}

/* ==========================================================================
   Teacher Shorts Video Section
   ========================================================================== */
.teacher-shorts-container {
    margin-top: 0px;
}

.teacher-shorts-video {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
}

.shorts-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.teacher-shorts-name {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #5a5a5a;
    margin-bottom: 0px;
    font-size: 22px;
}

.teacher-shorts-title {
    font-family: var(--font-primary);
    font-size: 19px;
    color: #6a6a6a;
    font-weight: 400;
    margin-top: 0;
}

/* ==========================================================================
   Case Study Custom Chart
   ========================================================================== */
.case-study-chart-container {
    padding-top: 10px;
    display: inline-block;
    max-width: 100%;
}

.bars-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
}

.chart-left-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.gain-text {
    font-family: var(--font-primary);
    font-weight: 800;
    color: #1a5b9e;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.chart-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-value {
    font-family: var(--font-primary);
    color: #df8a21;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 800;
}

.chart-percent {
    font-size: 32px;
    vertical-align: super;
}

.custom-bar {
    border-radius: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    line-height: 1.2;
    width: 150px;
}

.bar-baseline {
    background-color: #eba24a;
    height: 60px;
}

.bar-after {
    background-color: #df8a21;
    height: 250px;
}

.chart-bottom-label {
    font-family: var(--font-primary);
    font-weight: 900;
    color: #5a5a5a;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 20px;
    text-align: center;
}

.proven-by-Case-Studies {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .custom-bar {
        font-size: 16px;
        width: 110px;
    }

    .chart-value {
        font-size: 36px;
    }

    .chart-percent {
        font-size: 20px;
    }

    .gain-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   How We Are Different Section
   ========================================================================== */
.how-different-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: var(--font-primary);
}

.evidence-based-pill-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.evidence-based-pill {
    display: inline-block;
    max-width: 650px;
    height: auto;
    transition: transform 0.3s ease;
}

.evidence-based-pill:hover {
    transform: scale(1.03);
}

.how-different-title {
    font-family: var(--font-heading);
    color: #1a5b9e;
    font-size: 45px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.how-different-text-p {
    color: var(--text-primary);

    margin-bottom: 20px;
    font-weight: 500;
}

.classroom-img-wrapper {
    padding-left: 20px;
}

.classroom-img-wrapper img {
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .how-different-title {
        font-size: 42px;
        text-align: center;
    }

    .how-different-text-p {

        /* text-align: center; */
    }

    .classroom-img-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .evidence-based-pill {
        max-width: 90%;
    }
}

.how-different-subheading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 28px;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.how-different-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.how-different-list li {

    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.how-different-list li::before {
    content: "•";
    color: var(--text-primary);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.trusted-heading {
    font-family: var(--font-heading);
    color: #1a5b9e;
    font-size: 45px;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .how-different-subheading {
        font-size: 24px;
        text-align: center;
    }

    .how-different-list li {
        text-align: left;
        display: inline-block;
        max-width: 100%;
    }

    .trusted-heading {
        font-size: 45px;
        text-align: center;
    }
}

/* ==========================================================================
   Trusted Banner Section
   ========================================================================== */
.trusted-banner-bg {
    background-color: #1a5b9e;
    background: url(../images/homesection2-bg.png) #145999 repeat;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px 0px;
}

.trusted-banner-content {
    display: flex;
    align-items: center;
    padding: 0;
}

.trusted-img-col {
    flex: 0 0 240px;
    margin-left: 20px;
    z-index: 5;
}

.trusted-circle-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.trusted-text-col {
    flex: 1;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .trusted-banner-bg {
        margin-top: 150px;
    }

    .trusted-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .trusted-img-col {
        margin-top: -110px;
        margin-bottom: 0px;
        margin-left: 0;
    }

    .trusted-circle-img {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .trusted-text-col {
        padding-left: 0;
        padding-top: 30px;
        padding-bottom: 40px;
        font-size: 26px;
        text-align: center;
    }
}

/* ==========================================================================
   Latest Blog Posts Section
   ========================================================================== */
.latest-blogs-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
    font-family: var(--font-primary);
}

.blogs-heading {
    font-family: var(--font-heading);
    color: #1a5b9e;
    font-size: 45px;
    margin-bottom: 40px;
    text-align: left;
}

.blog-card {
    margin-bottom: 30px;
}

.blog-thumb-link {
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-thumb-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-title {
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--text-primary);
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #1a5b9e;
}

.blog-excerpt {
    color: var(--text-primary);

    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .blogs-heading {
        text-align: center;
        font-size: 42px;
    }
}

/* ==========================================================================
   Frequently Asked Questions Section
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: #f2f2f2;
    font-family: var(--font-primary);
}

.faq-heading {
    font-family: var(--font-heading);
    color: #1a5b9e;
    font-size: 45px;
    margin-bottom: 40px;
    text-align: left;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-weight: 800;

    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-answer strong {
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 991px) {
    .faq-heading {
        text-align: center;
        font-size: 42px;
    }
}

/* Base adjustment for mobile text scaling: reducing titles > 40px */
@media (max-width: 767px) {

    .outcomes-left-col .blue-title,
    .research-title-new,
    .how-different-title,
    .trusted-heading,
    .blogs-heading,
    .faq-heading {
        font-size: 26px;
        line-height: 1.2;
    }

    .chart-number,
    .chart-value,
    .circle-stat .stat-number {
        font-size: 28px;
    }

    .how-different-section {
        padding: 40px 0;
    }

    .evidence-based-pill-wrapper {
        margin-bottom: 20px;
    }

    .trusted-banner-bg {
        margin-top: 100px;
    }

    .latest-blogs-section {
        padding: 20px 0 20px 0;
    }

    .blog-title {
        font-size: 24px;
    }

    .faq-section {
        padding: 40px 0;
    }

    body {
        font-size: 18px;
    }

    .heading-line {    
    line-height: normal;
    }

}

.newfooter-container {
    font-size: 16px;
}