/* Education Power Section Styles */

.education-power-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.education-power-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.education-power-header h2 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.education-tagline {
    font-size: 1.5rem;
    color: #839D63;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
}

.education-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.education-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Education Pillars */
.education-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.education-pillar {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid #839D63;
}

.education-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pillar-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #839D63, #a8c98f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(131, 157, 99, 0.3);
}

.education-pillar h3 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.education-pillar p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Education Reflection */
.education-reflection {
    background: linear-gradient(135deg, #7C9BC0 0%, #7C9BC0 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.education-reflection::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(244, 208, 63, 0.2);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.education-reflection h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
}

.education-reflection blockquote {
    border-left: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
}

.education-reflection blockquote p {
    font-size: 1.5rem;
    color: #3456A3;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.education-reflection blockquote cite {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 600;
}

.reflection-conclusion {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .education-power-header h2 {
        font-size: 2.2rem;
    }

    .education-tagline {
        font-size: 1.2rem;
    }

    .education-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .education-power-section {
        padding: 4rem 0;
    }

    .education-intro p {
        font-size: 1rem;
    }

    .education-reflection {
        padding: 3rem 2rem;
    }

    .education-reflection blockquote p {
        font-size: 1.2rem;
    }
}