/* Education Compliance Section - Crisp & Concise */
.edu-compliance-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
    position: relative;
    overflow: hidden;
}

.edu-compliance-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.edu-compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.edu-compliance-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.edu-compliance-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

/* Cards Grid */
.edu-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.edu-comp-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.edu-comp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Icon Area */
.edu-comp-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gradient Background Blob */
.edu-comp-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(10px);
    animation: blob-pulse 6s infinite alternate;
}

.blob-blue { background: #3b82f6; }
.blob-indigo { background: #6366f1; }

@keyframes blob-pulse {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.1); }
}

/* Main Circle Icon */
.edu-comp-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

/* Rotating SVG Ring */
.edu-comp-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    animation: spin 20s linear infinite;
    opacity: 0.3;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.edu-comp-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.edu-comp-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Icons */
.comp-svg-icon {
    width: 40px;
    height: 40px;
    color: #3b82f6;
}

.comp-svg-icon.indigo {
    color: #6366f1;
}

/* Entry Animation Classes */
.edu-comp-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.edu-comp-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .edu-compliance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }
    
    .edu-compliance-title {
        font-size: 32px;
    }
    
    .edu-comp-card {
        padding: 32px;
    }
}

@media (max-width: 479px) {
    .edu-compliance-title {
        font-size: 28px;
    }
    
    .edu-compliance-section {
        padding: 60px 20px;
    }
}
