/* --- Sections General --- */
section .mid_container {
    width: 80%;
    margin: auto auto;
}

#executive_summary {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.summary_grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.summary_image {
    flex: 1;
    position: relative;
}

.summary_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.image_badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #1D7341;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(29, 115, 65, 0.3);
}

.summary_content {
    flex: 1.2;
}

.section_subtitle {
    color: #1D7341;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.main_heading {
    font-size: 36px;
    color: #0B214B;
    margin-bottom: 25px;
}

.lead_text {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight_box {
    border-left: 4px solid #1D7341;
    background: rgba(29, 115, 65, 0.05);
    padding: 20px;
    margin-bottom: 25px;
    font-style: italic;
    color: #333;
}

.strength_list {
    list-style: none;
    margin-top: 30px;
}

.strength_list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.strength_list li i {
    color: #1D7341;
    margin-top: 5px;
}

.strength_list span {
    color: #555;
    font-size: 15px;
}

@media (max-width: 992px) {
    .summary_grid {
        flex-direction: column;
        text-align: center;
    }

    .highlight_box {
        border-left: none;
        border-top: 4px solid #1D7341;
    }

    .strength_list li {
        justify-content: center;
        text-align: left;
    }
}

#business_model {
    padding: 100px 0;
    background-color: #fff;
}

.model_grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Model Types (Left) */
.model_types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.type_card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.type_card i {
    font-size: 24px;
    color: #1D7341;
    margin-bottom: 15px;
}

.type_card h4 {
    color: #0B214B;
    margin-bottom: 10px;
}

.type_card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.highlight_card {
    background: #0B214B;
    border: none;
    transform: scale(1.05);
}

.highlight_card h4,
.highlight_card p,
.highlight_card i {
    color: #fff;
}

/* Revenue Streams (Right) */
.revenue_streams {
    background: #fcfcfc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stream_title {
    font-size: 22px;
    color: #0B214B;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1D7341;
    display: inline-block;
}

.stream_list {
    list-style: none;
}

.stream_list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stream_list .dot {
    width: 12px;
    height: 12px;
    background: #1D7341;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.stream_list strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 4px;
}

.stream_list p {
    color: #777;
    font-size: 14px;
}

@media (max-width: 992px) {
    .model_grid {
        grid-template-columns: 1fr;
    }

    .highlight_card {
        transform: scale(1);
    }
}

#operations_infrastructure {
    padding: 100px 0;
    background-color: #f4f7f6;
    /* Subtle grey-green tint */
}

.ops_wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ops_content {
    flex: 1.5;
}

.ops_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.ops_item {
    display: flex;
    gap: 20px;
}

.ops_item i {
    font-size: 24px;
    color: #1D7341;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.ops_item strong {
    display: block;
    color: #0B214B;
    font-size: 16px;
    margin-bottom: 5px;
}

.ops_item p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.ops_footer_note {
    margin-top: 40px;
    padding: 15px 25px;
    background: rgba(29, 115, 65, 0.1);
    border-radius: 8px;
    color: #1D7341;
    font-size: 14px;
}

/* Quality Control Sidebar */
.qc_sidebar {
    flex: 1;
}

.qc_card {
    background: #0B214B;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.qc_card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.qc_card p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.qc_steps {
    list-style: none;
}

.qc_steps li {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qc_steps li::before {
    content: '→';
    color: #1D7341;
}

.qc_icon {
    font-size: 60px;
    position: absolute;
    right: -10px;
    top: -10px;
    opacity: 0.1;
}

@media (max-width: 992px) {
    .ops_wrapper {
        flex-direction: column;
    }

    .ops_grid {
        grid-template-columns: 1fr;
    }
}

#risk_management {
    padding: 120px 0;
    background-color: #ffffff;
    /* Clean white for Investor focus */
    border-top: 1px solid #eee;
}

.investor_align {
    text-align: left;
    max-width: 800px;
    margin-bottom: 80px;
}

.investor_note {
    font-size: 18px;
    color: #666;
    border-left: 3px solid #1D7341;
    padding-left: 20px;
    margin-top: 15px;
}

.risk_flex_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Tactical Cards */
.risk_cards_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.risk_item {
    padding: 25px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    /* Professional sharp edges */
    transition: 0.4s;
}

.risk_item:hover {
    border-color: #1D7341;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.risk_icon {
    font-size: 28px;
    color: #1D7341;
    margin-bottom: 20px;
}

.risk_text h4 {
    font-size: 17px;
    color: #0B214B;
    margin-bottom: 10px;
    font-weight: 600;
}

.risk_text p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Evidence Gallery */
.evidence_gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery_main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery_main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gallery_main .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 33, 75, 0.9);
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery_subs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery_subs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .risk_flex_container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .risk_cards_grid {
        grid-template-columns: 1fr;
    }
}

/* --- Operations & Infrastructure: Investor Standard --- */
#operations_infrastructure {
    padding: 120px 0;
    background-color: #ffffff;
}

.investor_align {
    max-width: 700px;
    margin-bottom: 60px;
}

.investor_note {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

/* Metrics Bar */
.ops_metrics_bar {
    display: flex;
    justify-content: space-between;
    background: #0B214B;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 80px;
}

.metric_item {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric_item:last-child {
    border-right: none;
}

.m_value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.m_label {
    color: #1D7341;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Pillars Layout */
.ops_flex_layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.pillar_card {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.pillar_card:last-child {
    border-bottom: none;
}

.pillar_icon {
    font-size: 24px;
    color: #0B214B;
    margin-top: 5px;
}

.pillar_info h4 {
    font-size: 18px;
    color: #0B214B;
    margin-bottom: 10px;
}

.pillar_info p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* Visual Evidence Side */
.visual_box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.visual_box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.qc_overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 30px;
    width: 280px;
    border-left: 5px solid #1D7341;
}

.qc_header {
    font-weight: 700;
    color: #0B214B;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.qc_list {
    list-style: none;
}

.qc_list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qc_list li i {
    color: #1D7341;
}

@media (max-width: 992px) {
    .ops_flex_layout {
        grid-template-columns: 1fr;
    }

    .ops_metrics_bar {
        flex-direction: column;
        gap: 30px;
    }

    .metric_item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}

/* --- Investment Opportunity: Professional Prospectus Style --- */
#investment_opportunity {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.inv_overview_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.inv_main_card {
    background: #fff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.inv_main_card h4 {
    color: #1D7341;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.inv_main_card p {
    font-size: 20px;
    line-height: 1.6;
    color: #0B214B;
    font-weight: 500;
}

.inv_stats_card {
    background: #0B214B;
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat_row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat_row span {
    font-size: 14px;
    opacity: 0.7;
}

.stat_row strong {
    font-size: 18px;
    color: #1D7341;
}

/* Funds Allocation */
.sub_caps {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 50px;
    color: #888;
}

.funds_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fund_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fund_header .count {
    font-size: 12px;
    font-weight: 700;
    color: #1D7341;
    border: 1px solid #1D7341;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fund_header h5 {
    font-size: 18px;
    color: #0B214B;
}

.fund_item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Investor CTA */
.investor_cta {
    margin-top: 100px;
    background: #fff;
    border: 2px solid #0B214B;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta_content h3 {
    font-size: 28px;
    color: #0B214B;
    margin-bottom: 10px;
}

.cta_content p {
    color: #666;
}

.btn_investor {
    background: #0B214B;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn_investor:hover {
    background: #1D7341;
}

@media (max-width: 992px) {

    .inv_overview_grid,
    .funds_grid,
    .investor_cta {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .investor_cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}