﻿.designation {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

    .about-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-title {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

    .page-title h1 {
        font-size: 48px;
        font-weight: 900;
        color: white;
        margin-bottom: 16px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        letter-spacing: -0.02em;
    }

    .page-title p {
        font-size: 20px;
        color: rgba(255,255,255,0.9);
        font-weight: 300;
    }

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
        background-size: 300% 300%;
        animation: gradientShift 3s ease infinite;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    min-height: 600px;
}

.about-image-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .about-image-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.3), transparent);
    }

.profile-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
    font-weight: bold;
}

.name-badge {
    /*background: rgba(255, 255, 255, 0.9);
            padding: 16px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            text-align: center;*/
    text-align: center;
}

    .name-badge h2 {
        font-size: 24px;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.about-text-section {
    padding: 60px 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        border-radius: 2px;
    }

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
}

    .about-description strong {
        color: #2d3748;
        font-weight: 700;
    }

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mission-card::before, .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
        background: rgba(102, 126, 234, 0.08);
    }

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

    .card-text strong {
        color: #2d3748;
        font-weight: 600;
    }

.stats-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-section {
        padding: 40px 20px;
    }

        .about-image-section::after {
            display: none;
        }

    .about-text-section {
        padding: 40px 30px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-title h1 {
        font-size: 36px;
    }

    .profile-image-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .about-text-section {
        padding: 30px 20px;
    }

    .mission-card, .vision-card {
        padding: 24px;
    }
}
