﻿/* Màu nền xám (Sử dụng lại màu xám của section trước) */
.ceo-ecosystem-area {
    background-color: #EAEAFB80;
    padding: 60px 120px;
}

/* --- Hình ảnh --- */
.ceo-image-wrapper img {
    border-radius: 12px;
    width: 600px;
    height: 700px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* --- Tiêu đề phụ (Subtitle) --- */
.ceo-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Căn trái */
    gap: 15px;
    margin-bottom: 15px;
}

    .ceo-subtitle-wrapper .text-subtitle {
        font-family: 'Google Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .ceo-subtitle-wrapper .line {
        width: 40px;
        height: 1px;
        background-color: #1a1a1a;
    }

/* --- Tiêu đề chính (Title) --- */
.ceo-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    /* Đổ màu Gradient cho toàn bộ chữ */
    background: linear-gradient(270deg, #3431C6 0%, #000021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

    .ceo-title .text-gradient {
        /* Phần chữ màu xanh Gradient */
        background: linear-gradient(270deg, #3431C6 0%, #000021 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

.ceo-desc {
    font-family: 'Google Sans', sans-serif;
    font-size: 17px;
    color: #070A0E;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ceo-progress-wrapper .single-progress {
    margin-bottom: 25px;
}

.ceo-progress-wrapper .progress-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    color: #070A0E;
    font-size: 15px;
}

.ceo-progress-wrapper .progress {
    height: 10px;
    background-color: #ffffff; /* Nền trắng của thanh */
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.ceo-progress-wrapper .progress-bar {
    background-color: #3431C6;
    border-radius: 10px;
}

/* --- Nút bấm (Button) --- */
.ceo-btn-wrapper .btn-explore {
    font-family: 'Google Sans', sans-serif;
    background: #3431C6;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .ceo-btn-wrapper .btn-explore:hover {
        background: #2a289f;
        transform: translateY(-2px);
        color: #ffffff;
    }

/* --- Responsive cho Mobile --- */
@media (max-width: 768px) {
    .ceo-ecosystem-area {
        padding: 50px 0;
    }

    .ceo-title {
        font-size: 32px;
    }

    .ceo-image-wrapper {
        margin-bottom: 30px;
    }
}
