.about-card {
    background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px;
    padding: 3rem; backdrop-filter: blur(10px); text-align: center; transition: all 0.4s ease; height: 100%;
}
.about-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-neon); border-color: rgba(0, 243, 255, 0.4); }
.about-icon { font-size: 3.5rem; color: var(--neon-blue); margin-bottom: 1.5rem; filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4)); }
.about-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.about-card p { color: var(--text-muted); line-height: 1.7; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
.text-box { background: rgba(0, 81, 255, 0.05); border-left: 4px solid var(--brand-blue); padding: 2.5rem; border-radius: 0 15px 15px 0; position: relative; }
.text-box::before { content: '\f10d'; font-family: 'FontAwesome'; position: absolute; top: 20px; right: 30px; font-size: 4rem; color: rgba(0, 243, 255, 0.05); }
.text-box h2 { font-size: 2.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 15px; }
.text-box h2 i { color: var(--neon-blue); }
.text-box p { color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; }
@media (max-width: 768px) { .mission-vision-grid { grid-template-columns: 1fr; } }