/* 
=====================
    EXPORT MARKETS SECTION Styling:
=====================
 */

.section-padding {
        padding: 90px 0;
    }
    .section-title-center {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 32px;
        color: var(--primary-blue, #0A192F);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        padding-bottom: 15px;
    }
    .section-title-center::after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: var(--primary-gold, #C49B3B);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 1. INTRODUCTION SECTION */
    .about-intro-sec { background-color: #ffffff; }
    
    .intro-img-box {
        position: relative;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    .intro-img-box img {
        width: 100%;
        transition: transform 0.6s ease;
    }
    .intro-img-box:hover img {
        transform: scale(1.05);
    }
    
    .intro-content { padding-left: 30px; }
    .intro-subtitle {
        color: var(--primary-gold, #C49B3B);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }
    .intro-title {
        font-weight: 700;
        font-size: 36px;
        color: var(--primary-blue, #0A192F);
        line-height: 1.3;
        margin-bottom: 25px;
    }
    .intro-text p {
        color: #555555;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    /* 2. WHAT WE DO SECTION */
    .wwd-sec {
        background-color: #f9f9f9; /* Halka grey background */
        text-align: center;
    }
    .wwd-content {
        max-width: 800px;
        margin: 0 auto;
    }
    .wwd-content p {
        font-size: 16px;
        color: #444444;
        line-height: 1.8;
    }
    .wwd-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }
    .wwd-tags span {
        background: #ffffff;
        border: 1px solid var(--primary-gold, #C49B3B);
        color: var(--primary-blue, #0A192F);
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    .wwd-tags span:hover {
        background: var(--primary-gold, #C49B3B);
        color: #ffffff;
    }

    /* 3. MISSION & VISION SECTION */
    .mv-sec { background-color: #ffffff; }
    .mv-card {
        background: #ffffff;
        border: 1px solid #eaeaea;
        padding: 40px 30px;
        border-radius: 12px;
        height: 100%;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .mv-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 4px; height: 100%;
        background-color: var(--primary-gold, #C49B3B);
        transition: width 0.3s ease;
        z-index: -1;
    }
    .mv-card:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }
    .mv-card:hover::before { width: 100%; opacity: 0.05; }
    .mv-icon {
        font-size: 40px;
        color: var(--primary-gold, #C49B3B);
        margin-bottom: 20px;
    }
    .mv-title {
        font-weight: 700;
        font-size: 22px;
        color: var(--primary-blue, #0A192F);
        margin-bottom: 15px;
    }
    .mv-card p {
        color: #666666;
        font-size: 15px;
        line-height: 1.7;
    }

    /* 4. OUR STRENGTHS SECTION */
    .strengths-sec { background-color: #f9f9f9; color: #0A192F; }
    .strengths-sec .section-title-center { color: #0A192F; }
    
    .strength-item {
        background: #ffffff;
        border: 1px solid rgba(255,255,255,0.1);
        padding: 30px 20px;
        border-radius: 8px;
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
    }
    .strength-item:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--primary-gold, #C49B3B);
        transform: translateY(-8px);
    }
    .strength-icon {
        font-size: 35px;
        color: var(--primary-gold, #C49B3B);
        margin-bottom: 15px;
    }
    .strength-item h5 {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .strength-item p {
        font-size: 13px;
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }

    /* Mobile Responsiveness */
    @media (max-width: 991px) {
        .intro-content { padding-left: 0; margin-top: 40px; }
        .section-padding { padding: 60px 0; }
        .intro-title { font-size: 28px; }
    }