/* ===== ABOUT PAGE SPECIFIC ===== */

.about-hero {
    background: #060d18;
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(0,212,255,0.06);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(0,212,255,0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(123,47,252,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #7b2ffc 0%, #00d4ff 50%, #7b2ffc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(123,47,252,0.15));
}
.about-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@keyframes holographicTitle {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.founder-section {
    padding: 60px 0;
    background: #f8fafc;
}
.founder-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}
.founder-image {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#founderImg {
    width: 100%;
    max-width: 260px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}
#founderImg:hover {
    transform: scale(1.02) translateY(-5px);
}
.founder-credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 60px;
    text-decoration: none;
    color: #0a1a2a;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.founder-credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.founder-credential-badge img {
    width: 32px;
}
.founder-content {
    flex: 1;
    min-width: 280px;
}
.founder-content h2 {
    font-size: 2rem;
    color: #0a2647;
    margin-bottom: 1rem;
}
.founder-content p {
    color: #3a4a5a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.ican-link {
    color: #1a4b8c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.ican-link:hover {
    border-bottom-color: #1a4b8c;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.philosophy-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 2px 0 rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}
.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.9);
}
.philosophy-card .philosophy-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.philosophy-card h4 {
    font-size: 1.1rem;
    color: #0a1a2a;
    margin-bottom: 6px;
}
.philosophy-card p {
    font-size: 0.9rem;
    color: #4a5a6a;
    margin: 0;
}

.mission-section {
    padding: 60px 0;
    background: #ffffff;
}
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.mission-card {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 2px 0 rgba(255,255,255,0.9);
}
.mission-card.card-dark {
    background: #0a2647;
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}
.mission-card.card-dark h3 {
    color: #fff;
}
.mission-card.card-dark p {
    color: rgba(255,255,255,0.85);
}
.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.mission-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA banner (reused from services.css – can be extracted to global, but here for completeness) */
.cta-holographic {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(220,230,245,0.4) 0%, rgba(255,255,255,0.6) 30%, rgba(210,220,235,0.5) 60%, rgba(240,245,250,0.4) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}
.cta-holographic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(200,215,240,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.cta-holographic-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.cta-holographic-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #1a2a3a;
    background: linear-gradient(135deg, #1a2a3a, #4a6a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-holographic-content p {
    color: #3a4a5a;
    margin-bottom: 20px;
}
.btn-holographic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 60px;
    font-weight: 600;
    color: #1a2a3a;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}
.btn-holographic:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.btn-holographic i { transition: transform 0.3s ease; }
.btn-holographic:hover i { transform: translateX(6px); }

@media (max-width: 768px) {
    .founder-grid { flex-direction: column; align-items: center; }
    .founder-image { flex: 0 0 auto; }
    .founder-content { text-align: center; }
    .philosophy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .philosophy-grid { grid-template-columns: 1fr; }
}