/* =========================================
   BANKABLE PROJECT PROFILE - KEY ELEMENTS
   ========================================= */

.page-bankable-profile {
    width: 94%;
    max-width: 1150px;
    margin: 45px auto;
    box-sizing: border-box;

    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   INDIVIDUAL PROFILE ELEMENT
   ========================================= */

.page-bankable-profile .profile-element {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;

    box-sizing: border-box;
    padding: 25px 22px;

    background: #ffffff;
    border: 1px solid #e1e6eb;
    border-radius: 8px;

    display: flex;
    align-items: flex-start;
    gap: 17px;

    transition: all 0.25s ease;
}


/* =========================================
   ICON
   ========================================= */

.page-bankable-profile .profile-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f6fa;
    border-radius: 50%;

    color: #1769aa;
    font-size: 23px;
}


/* =========================================
   CONTENT
   ========================================= */

.page-bankable-profile .profile-content {
    flex: 1;
    min-width: 0;
}

.page-bankable-profile .profile-content h3 {
    margin: 0 0 9px;

    color: #1f2937;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.page-bankable-profile .profile-content p {
    margin: 0;

    color: #555555;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================
   HOVER EFFECT
   ========================================= */

.page-bankable-profile .profile-element:hover {
    border-color: #b8cddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.page-bankable-profile .profile-element:hover .profile-icon {
    background: #1769aa;
    color: #ffffff;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .page-bankable-profile {
        width: 94%;
        max-width: 850px;
        gap: 18px;
    }

    .page-bankable-profile .profile-element {
        flex: 1 1 calc(50% - 18px);
        min-width: 0;

        padding: 22px 19px;
    }

    .page-bankable-profile .profile-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .page-bankable-profile .profile-content h3 {
        font-size: 16px;
    }

    .page-bankable-profile .profile-content p {
        font-size: 13.5px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 550px) {

    .page-bankable-profile {
        width: calc(100% - 20px);
        max-width: 500px;

        display: flex;
        flex-direction: column;
        gap: 15px;

        margin: 30px auto;
    }

    .page-bankable-profile .profile-element {
        width: 100%;
        min-width: 0;
        flex: none;

        padding: 20px 17px;
    }

    .page-bankable-profile .profile-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .page-bankable-profile .profile-content h3 {
        font-size: 15.5px;
        margin-bottom: 7px;
    }

    .page-bankable-profile .profile-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}



/* =========================================
   OUR CORE CONSULTING ACTIVITIES
   ========================================= */
    
    .consulting-section {
        padding: 60px 20px;
        background: #f8fafc;
    }
    
    .consulting-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    
    .consulting-title {
        margin: 0 0 12px;
        color: #1f2937;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .consulting-intro {
        max-width: 780px;
        margin: 0 auto 45px;
        color: #5f6875;
        font-size: 16px;
        line-height: 1.7;
    }
    
            
    /* CONSULTING PROCESS GRID  */
    
    .consulting-process {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 25px;
    }
    
    
    /*  CONSULTING ACTIVITY */
    
    .consulting-activity {
        position: relative;
        z-index: 1;
    
        min-height: 250px;
        padding: 25px 20px;
        box-sizing: border-box;
    
        display: flex;
        flex-direction: column;
        align-items: center;
    
        text-align: center;
    
        background: #ffffff;
        border: 1px solid #e4e9ee;
        border-radius: 8px;
    
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.035);
    
        transition: all 0.3s ease;
    }
            
            
    /*  CONNECTING LINE — FIRST ROW */
    
    .consulting-activity:nth-child(1)::after,
    .consulting-activity:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 100%;
        width: 25px;
        height: 2px;
        background: #d9e3ed;
        z-index: -1;
    }
    
    
    /*  CONNECTING LINE — SECOND ROW */
    
    .consulting-activity:nth-child(4)::after,
    .consulting-activity:nth-child(5)::after {
        content: "";
        position: absolute;
        top: 30px;
        left: 100%;
        width: 25px;
        height: 2px;
        background: #d9e3ed;
        z-index: -1;
    }
    
    
    /*ICON WRAPPER */
    
    .consulting-icon-wrap {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        flex-shrink: 0;
    }
    
    
    /* ICON  */
    
    .consulting-icon {
        width: 60px;
        height: 60px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        background: #ffffff;
        border: 2px solid #1769aa;
        border-radius: 50%;
    
        color: #1769aa;
        font-size: 23px;
    
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    
        transition: all 0.3s ease;
    }
    
    
    /* NUMBER  */
    
    .consulting-number {
        position: absolute;
        top: -8px;
        right: -10px;
    
        width: 25px;
        height: 25px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        background: #1769aa;
        color: #ffffff;
    
        border: 2px solid #f8fafc;
        border-radius: 50%;
    
        font-size: 10px;
        font-weight: 700;
    }
    
    
    /* ACTIVITY HEADING  */
    
    .consulting-activity h3 {
        margin: 0 0 10px;
    
        color: #1f2937;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.45;
    }
    
    
    /* ACTIVITY DESCRIPTION  */
    
    .consulting-activity p {
        margin: 0;
    
        color: #6b7280;
        font-size: 14px;
        line-height: 1.6;
    }
    
    
    /* HOVER EFFECT */
    
    .consulting-activity:hover {
        transform: translateY(-4px);
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.07);
    }
    
    .consulting-activity:hover .consulting-icon {
        background: #1769aa;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 7px 18px rgba(23, 105, 170, 0.20);
    }
    
    
    /*  FINAL RESULT  */
    
    .consulting-result {
        max-width: 720px;
    
        margin: 45px auto 0;
        padding: 18px 25px;
    
        background: #ffffff;
    
        border-left: 4px solid #1769aa;
        border-radius: 6px;
    
        color: #374151;
        font-size: 15px;
        line-height: 1.6;
    
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .consulting-result strong {
        color: #1769aa;
    }
    
    
    /*  TABLET  */
    
    @media (max-width: 900px) {
    
        .consulting-section {
            padding: 50px 18px;
        }
    
        .consulting-wrapper {
            max-width: 720px;
        }
    
        .consulting-process {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px 18px;
        }
    
        .consulting-activity {
            min-height: 255px;
            padding: 23px 15px;
        }
    
        .consulting-activity:nth-child(1)::after,
        .consulting-activity:nth-child(2)::after,
        .consulting-activity:nth-child(4)::after,
        .consulting-activity:nth-child(5)::after {
            width: 18px;
        }
    }
    
    
    /*  MOBILE  */
    
    @media (max-width: 600px) {
    
        .consulting-section {
            padding: 45px 15px;
        }
    
        .consulting-title {
            font-size: 25px;
        }
    
        .consulting-intro {
            font-size: 15px;
            margin-bottom: 35px;
        }
    
        .consulting-process {
            display: block;
        }
    
        .consulting-activity {
            width: 100%;
            max-width: 100%;
            min-height: auto;
            margin: 0 auto 25px;
            padding: 25px 20px;
        }
    
        /* Remove desktop connecting lines */
    
        .consulting-activity::after {
            display: none !important;
        }
    
        .consulting-activity:last-child {
            margin-bottom: 0;
        }
    
        .consulting-result {
            margin-top: 35px;
            padding: 16px 18px;
            font-size: 14px;
        }
    }


/* =========================================
   RELATED BANKABLE PROJECT LINKS
   ========================================= */

    .bankable-profiles-links {
        max-width: 1100px;
        margin: 45px auto;
        padding: 30px 25px;
        background: #f8fafc;
        border: 1px solid #e4e9ee;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .bankable-profiles-links h2 {
        margin: 0 0 10px;
        color: #1f2937;
        font-size: 23px;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
    }
    
    .bankable-profiles-links > p {
        max-width: 1100px;
        margin: 0 auto 25px;
        color: #667085;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
    
    .bankable-profiles-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .bankable-profile-link {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 52px;
        padding: 12px 15px;
        box-sizing: border-box;
    
        color: #1769aa;
        background: #ffffff;
        border: 1px solid #e1e7ed;
        border-radius: 6px;
        
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        text-decoration: none;
    
        transition: all 0.25s ease;
    }
    
    .bankable-profile-link i {
        flex-shrink: 0;
        color: #1769aa;
        font-size: 18px;
        transition: transform 0.25s ease;
    }
    
    .bankable-profile-link:hover {
        color: #ffffff;
        background: #1769aa;
        border-color: #1769aa;
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(23, 105, 170, 0.15);
    }
    
    .bankable-profile-link:hover i {
        color: #ffffff;
        transform: translateX(3px);
    }
    

/* =========================================
   TABLET
   ========================================= */

    @media (max-width: 800px) {
    
        .bankable-profiles-links {
            margin: 35px auto;
            padding: 25px 20px;
        }
    
        .bankable-profiles-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }


/* =========================================
   MOBILE
   ========================================= */

    @media (max-width: 550px) {
    
        .bankable-profiles-links {
            margin: 30px 10px;
            padding: 22px 15px;
        }
    
        .bankable-profiles-links h2 {
            font-size: 21px;
        }
    
        .bankable-profiles-list {
            grid-template-columns: 1fr;
        }
    
        .bankable-profile-link {
            min-height: 50px;
            font-size: 14px;
        }
    }    



/* Table of Contents starts */
/* =========================================
   TABLE OF CONTENTS
   ========================================= */

    .table-of-content {
        width: 94%;
        max-width: 900px;
        margin: 45px auto;
        padding: 38px 40px;
        box-sizing: border-box;
    
        background: #ffffff;
        border: 1px solid #e1e6eb;
        border-radius: 8px;
    
        color: #333333;
        font-family: Arial, Helvetica, sans-serif;
    
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }


/* =========================================
   MAIN HEADING
   ========================================= */

    .table-of-content h2 {
        margin: 0 0 28px;
        padding-bottom: 13px;
    
        color: #1f2937;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.4;
    
        border-bottom: 2px solid #1769aa;
    }


/* =========================================
   LIST RESET
   ========================================= */

    .table-of-content ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .table-of-content li {
        margin: 0;
        padding: 0;
    }


/* =========================================
   MAIN SECTIONS
   ========================================= */

    .table-of-content .toc-main {
        margin-top: 10px;
    }
    
    .table-of-content .toc-main:first-child {
        margin-top: 0;
    }


/* =========================================
   TOC ROW
   ========================================= */

    .table-of-content .toc-link {
        display: flex;
        align-items: baseline;
    
        width: 100%;
        min-width: 0;
    
        color: #333333;
        text-decoration: none;
    
        font-size: 15px;
        line-height: 1.6;
    }


/* Main section titles */

    .table-of-content .toc-main > .toc-link {
        font-weight: 600;
    }


/* =========================================
   SUBSECTIONS
   ========================================= */

    .table-of-content .toc-sub {
        padding-left: 30px;
    }
    
    .table-of-content .toc-sub .toc-link {
        color: #555555;
        font-size: 14px;
        font-weight: 400;
    }
    

/* =========================================
   NUMBER
   ========================================= */

    .table-of-content .toc-number {
        flex: 0 0 auto;
    
        margin-right: 8px;
    
        white-space: nowrap;
    }


/* =========================================
   TITLE
   ========================================= */

    .table-of-content .toc-title {
        min-width: 0;
    }


/* =========================================
   DOT LEADER
   ========================================= */

    .table-of-content .toc-dots {
        flex: 1 1 auto;
    
        min-width: 20px;
        height: 1em;
    
        margin: 0 8px;
    
        border-bottom: 1px dotted #999999;
    
        position: relative;
        top: -2px;
    }
    

/* =========================================
   PAGE NUMBER
   ========================================= */

    .table-of-content .toc-page {
        flex: 0 0 auto;
    
        min-width: 35px;
    
        color: #333333;
    
        text-align: right;
        white-space: nowrap;
    }


/* =========================================
   HOVER EFFECT
   ========================================= */

    .table-of-content .toc-link:hover {
        color: #1769aa;
    }
    
    .table-of-content .toc-link:hover .toc-page {
        color: #1769aa;
    }


/* =========================================
   FINANCIAL NOTES & APPENDICES HEADING
   ========================================= */

    .table-of-content .toc-appendix-title {
        margin: 32px 0 13px;
        padding-top: 20px;
    
        color: #1f2937;
    
        font-size: 19px;
        font-weight: 700;
        line-height: 1.5;
    
        border-top: 1px solid #e1e6eb;
    }


/* =========================================
   FINANCIAL NOTE ITEMS
   ========================================= */

    .table-of-content .toc-note {
        padding-left: 5px;
    }
    
    .table-of-content .toc-note .toc-link {
        font-size: 14px;
        font-weight: 500;
    }


/* =========================================
   FINANCIAL NOTE SUB-ITEMS
   ========================================= */

    .table-of-content .toc-note-sub {
        padding-left: 38px;
    }
    
    .table-of-content .toc-note-sub .toc-link {
        color: #555555;
        font-size: 13.5px;
        font-weight: 400;
    }


/* =========================================
   FINANCIAL PERFORMANCE APPENDIX
   ========================================= */

    .table-of-content .toc-financial-title {
        margin: 22px 0 11px;
        padding-left: 5px;
    
        color: #333333;
    
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .table-of-content .toc-financial-item {
        padding-left: 38px;
    }


/* =========================================
   TABLET
   ========================================= */

    @media (max-width: 900px) {
    
        .table-of-content {
            width: 94%;
            padding: 30px 30px;
        }
    
        .table-of-content h2 {
            font-size: 24px;
        }
    
        .table-of-content .toc-link {
            font-size: 14px;
        }
    
        .table-of-content .toc-sub .toc-link {
            font-size: 13.5px;
        }
    
        .table-of-content .toc-sub {
            padding-left: 24px;
        }
    
        .table-of-content .toc-note-sub,
        .table-of-content .toc-financial-item {
            padding-left: 30px;
        }
    }


/* =========================================
   MOBILE
   ========================================= */

    @media (max-width: 550px) {
    
        .table-of-content {
            width: calc(100% - 20px);
            margin: 30px auto;
            padding: 23px 16px;
            border-radius: 6px;
        }
    
        .table-of-content h2 {
            margin-bottom: 21px;
            font-size: 21px;
        }
    
        .table-of-content .toc-link {
            font-size: 13.5px;
            line-height: 1.55;
        }
    
        .table-of-content .toc-sub .toc-link,
        .table-of-content .toc-note .toc-link,
        .table-of-content .toc-note-sub .toc-link {
            font-size: 13px;
        }
    
        .table-of-content .toc-sub {
            padding-left: 18px;
        }
    
        .table-of-content .toc-note-sub,
        .table-of-content .toc-financial-item {
            padding-left: 22px;
        }
    
        .table-of-content .toc-dots {
            margin: 0 5px;
            min-width: 10px;
        }
    
        .table-of-content .toc-page {
            min-width: 28px;
        }
    }

