/*==================================================
INSIGHTS HERO
==================================================*/

.insights-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    position: relative;
    overflow: hidden;
}

.insights-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(11, 30, 60, .05);
    border-radius: 50%;
}

.insights-hero .container {
    position: relative;
    z-index: 2;
}


.insights-content h1 {
    color: #094C80;
}

.insights-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.insights-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 20px 0;
    color: #0B1E3C;
}

.insights-content h1 span {
    color: #B87333;
}

.insights-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 30px;
}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/*==================================================
RIGHT IMAGE
==================================================*/

.insights-image {
    position: relative;
}

.insights-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/*==================================================
FLOATING CARD
==================================================*/

.insights-image .floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.insights-image .floating-card h3 {
    color: #0B1E3C;
    margin-bottom: 8px;
}

.insights-image .floating-card p {
    margin: 0;
    color: #6B7280;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:992px) {

    .insights-hero {
        padding: 120px 0 80px;
    }

    .insights-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .insights-content {
        order: 1;
    }

    .insights-image {
        order: 2;
    }

    .insights-image img {
        height: 500px;
    }
}

@media (max-width:768px) {

    .insights-hero {
        padding: 100px 0 60px;
    }

    .insights-content h1 {
        font-size: 2.5rem;

    }


    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .insights-image img {
        height: 380px;
    }

    .insights-image .floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width:576px) {

    .insights-content h1 {
        font-size: 2rem;

    }

    .insights-image .floating-card {
        padding: 18px;
    }

    .insights-image .floating-card h3 {
        font-size: 1.3rem;
    }
}

/*==================================================
FEATURED INSIGHT
==================================================*/

.featured-insight {
    padding: 110px 0;
    background: #fff;
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    transition: .35s ease;
}

.featured-image img:hover {
    transform: scale(1.02);
}

.featured-content {
    max-width: 600px;
}

.featured-content h2 {
    color: #0B1E3C;
    font-size: 2.5rem;
    line-height: 1.25;
    margin: 20px 0;
}

.featured-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: .95rem;
}

.article-meta i {
    color: #B87333;
}

/*==================================================
CATEGORIES
==================================================*/

.insight-categories {
    padding: 110px 0;
    background: #f8fbff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: .35s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.category-card i {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: #0B1E3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: .35s;
}

.category-card:hover i {
    background: #B87333;
}

.category-card h3 {
    color: #0B1E3C;
    font-size: 1.3rem;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .insights-hero-grid,
    .featured-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .insights-content {
        order: 2;
        max-width: 100%;
    }

    .insights-image {
        order: 1;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .insights-hero {
        padding: 110px 0 70px;
    }

    .insights-content h1 {
        font-size: 2.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .insights-image img,
    .featured-image img {
        height: 360px;
    }

    .floating-card {
        position: static !important;
        width: 100% !important;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .insights-content h1 {
        font-size: 2rem;
    }

    .featured-content h2 {
        font-size: 2rem;
    }

    .category-card {
        padding: 30px 20px;
    }

}

/*==================================================
LATEST INSIGHTS
==================================================*/

.latest-insights {
    padding: 110px 0;
    background: #ffffff;
}

.latest-insights .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.latest-insights .section-heading p {
    color: #6B7280;
    margin-top: 18px;
    line-height: 1.8;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/*==================================================
ARTICLE CARD
==================================================*/

.insight-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.insight-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .45s;
}

.insight-card:hover img {
    transform: scale(1.05);
}

.insight-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    background: #eef5ff;
    color: #0B1E3C;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.insight-content h3 {
    font-size: 1.45rem;
    color: #0B1E3C;
    line-height: 1.4;
    margin-bottom: 18px;
    transition: .3s;
}

.insight-card:hover h3 {
    color: #B87333;
}

.insight-content p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.insight-content .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.insight-content .article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: .9rem;
}

.insight-content .article-meta i {
    color: #B87333;
}

.insight-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0B1E3C;
    text-decoration: none;
    transition: .3s;
}

.insight-content a:hover {
    color: #B87333;
}

.insight-content a i {
    transition: .3s;
}

.insight-content a:hover i {
    transform: translateX(6px);
}

/*==================================================
TRENDING TOPICS
==================================================*/

.trending-topics {
    padding: 110px 0;
    background: #f8fbff;
}

.topics-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 60px;
}

.topic-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 50px;
    color: #0B1E3C;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.topic-pill:hover {
    background: #0B1E3C;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 30, 60, .18);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .insights-grid {
        gap: 25px;
    }

}

@media(max-width:992px) {

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .latest-insights,
    .trending-topics {
        padding: 80px 0;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card img {
        height: 220px;
    }

    .insight-content {
        padding: 24px;
    }

    .insight-content h3 {
        font-size: 1.3rem;
    }

    .topics-wrapper {
        gap: 14px;
    }

    .topic-pill {
        padding: 12px 20px;
        font-size: .9rem;
    }

}

@media(max-width:576px) {

    .insight-content .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .topic-pill {
        width: 100%;
        justify-content: center;
    }

}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter-section {
    padding: 110px 0;
    background: #0B1E3C;
}

.newsletter-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.newsletter-box h2 {
    color: #fff;
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.25;
}

.newsletter-box p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 40px;
}

.newsletter-form {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.newsletter-form button {
    border: none;
    border-radius: 0;
    padding: 0 34px;
    cursor: pointer;
}

/*==================================================
WHY READ OUR INSIGHTS
==================================================*/

.why-insights {
    padding: 110px 0;
    background: #fff;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.why-content h2 {
    color: #0B1E3C;
    font-size: 2.6rem;
    margin: 20px 0;
    line-height: 1.25;
}

.why-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0B1E3C;
    font-weight: 500;
}

.check-list i {
    color: #B87333;
    font-size: 1.1rem;
}

/*==================================================
KNOWLEDGE STATS
==================================================*/

.knowledge-stats {
    padding: 110px 0;
    background: #f8fbff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #fff;
    padding: 45px 25px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.stat-card h3 {
    font-size: 3rem;
    color: #B87333;
    margin-bottom: 12px;
}

.stat-card p {
    color: #6B7280;
    margin: 0;
    font-size: 1rem;
}

/*==================================================
FINAL CTA
==================================================*/

.insights-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #0B1E3C, #12294F);
}

.cta-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.cta-box .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.2;
}

.cta-box p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 40px;
}

.cta-box .hero-buttons {
    justify-content: center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .why-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .newsletter-section,
    .why-insights,
    .knowledge-stats,
    .insights-cta {
        padding: 80px 0;
    }

    .newsletter-box h2,
    .why-content h2,
    .cta-box h2 {
        font-size: 2.2rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 0;
        padding: 18px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-image img {
        height: 380px;
    }

}

@media(max-width:576px) {

    .newsletter-box h2,
    .why-content h2,
    .cta-box h2 {
        font-size: 1.9rem;
    }

    .stat-card {
        padding: 35px 20px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

}