[data-overlay]::before {
     background: #07294d none repeat scroll 0 0; 
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    }
    .benefit-section {
    text-align: center;
    }
    .title {
        font-size: 52px;
        font-weight: bold;
        color: #f9a51a;
    }
    .subtitle {
        font-size: 20px;
        margin-bottom: 70px;
    }
    .benefit-container {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }
    .benefit-box {
        background: #fff;
        width: 300px;
        padding: 30px 20px;
        border-radius: 15px;
        position: relative;
        box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
    }
    .icon-circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        margin: -70px auto 20px auto;
        color: #fff;
    }
    .icon1 { background: #f9a51a; }
    .icon2 { background: #1653c6; }
    .icon3 { background: #05c46b; }
    .benefit-box h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .benefit-box p {
        font-size: 18px;
        line-height: 1.4;
    }
    .bottom-dot {
        width: 18px;
        height: 18px;
        background: red;
        border-radius: 50%;
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline {
        width: 100%;
        height: 2px;
        background: #004a7c;
        display: block;
        margin: 70px auto 0;
        border-radius: 50px;
    }
/* Section Container */
.pillar-section {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    padding-bottom: 50px;
}

.pillar-title {
    font-size: 55px;
    font-weight: bold;
    color: #F8A328;
    margin-bottom: 15px;
}

.pillar-subtitle {
    font-size: 22px;
    color: #003B85;
    line-height: 1.6;
    max-width: 950px;
    margin: 0 auto 50px;
}

/* Cards Layout */
.pillars-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Card Styles */
.pillar-card {
    width: 350px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: .3s ease;
    position: relative;
}

/* Hover Effect */
.pillar-card:hover {
    transform: translateY(-8px);
}

/* Icon Styling */
.pillar-icon {
    width: 150px;
    height: 150px;
    border-radius: 100px 100px 0 0;
    margin: 0 auto -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    color: #fff;
}

/* Three Colors */
.quality-color { background: #63C81C; }
.knowledge-color { background: #1F6AFF; }
.morality-color { background: #E53F2C; }

/* Text Colors */
.quality-text { color: #63C81C; }
.knowledge-text { color: #1F6AFF; }
.morality-text { color: #E53F2C; }

/* Card Labels */
.pillar-label {
    font-size: 32px;
    margin-top: 75px;
    margin-bottom: 15px;
    font-weight: bold;
}

.pillar-list {
    list-style: disc;
    text-align: left;
    font-size: 20px;
    margin-left: 30px;
    color: #003B85;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .pillars-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
