/* --- Premium About Page Styles --- */

/* Hero Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Background Pattern */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 69, 240, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 69, 240, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.heading {
    margin-bottom: 30px;
    position: relative;
}

.heading h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    color: var(--text-main);
    font-family: var(--font-heading);
    display: inline-block;
}

/* Profile Text Content */
.profile-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: var(--fs-lead);
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-dim);
    font-family: var(--font-body);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.action-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    margin-top: 20px;
}


/* Mission, Vision, Values Section */
.space {
    padding: 80px 0 120px;
    background: var(--bg-white);
    position: relative;
}

.mi-vi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.col {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Pulsating Glow Animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(15, 69, 240, 0.1);
        border-color: rgba(15, 69, 240, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(15, 69, 240, 0.4);
        border-color: rgba(15, 69, 240, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(15, 69, 240, 0.1);
        border-color: rgba(15, 69, 240, 0.2);
    }
}

.col {
    animation: glowPulse 3s infinite ease-in-out;
}

.col:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}

.col h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.col p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.col strong {
    display: block;
    color: var(--text-main);
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Decorative top border for cards */
.col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.col:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mi-vi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .heading h2 {
        font-size: var(--fs-h2);
        text-align: center;
    }

    .mi-vi {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .col {
        align-items: center;
        text-align: center;
    }

    .about {
        padding: 100px 0 60px;
    }

    .container,
    .mi-vi {
        padding: 0 20px;
    }

    .about-text {
        font-size: 1.1rem;
        text-align: center;
    }
}