/* Market Opportunity Section Styles */
.market-opportunity-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.market-opportunity-section .section-heading {
    margin-bottom: 60px;
    text-align: left;
}

.market-opportunity-section .section-heading h6 {
    font-size: 15px;
    font-weight: 700;
    /* Color handled by gradient-theme.css */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.market-opportunity-section .section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.4;
    margin-bottom: 25px;
}

.market-opportunity-section .description p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.market-opportunity-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.market-opportunity-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.market-opportunity-list li i {
    color: #3B82F6;
    /* Blue to match theme */
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.market-opportunity-list li .text h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.market-opportunity-list li .text p {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.6;
    margin: 0;
}

.market-opportunity-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.market-opportunity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.market-opportunity-image:hover img {
    transform: scale(1.05);
}

.market-stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.market-stats-overlay h4 {
    font-size: 32px;
    font-weight: 700;
    color: #3B82F6;
    /* Blue to match theme */
    margin-bottom: 5px;
}

.market-stats-overlay p {
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .market-opportunity-section .section-heading {
        text-align: center;
    }

    .market-opportunity-image {
        margin-top: 50px;
    }
}