:root {
    --primary-color: #4e73df;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --accent-color: #36b9cc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    background-color: #f8f9fa;
}

.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0 3rem;
    margin-top: -1px;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.about-hero-image {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Values Cards */
.value-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(78, 115, 223, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(78, 115, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Team Section */
.team-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(78, 115, 223, 0.15);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.team-name {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(78, 115, 223, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    margin-top: 4rem;
}

.navbar-brand {
    perspective: 1000px;
    display: inline-block;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.navbar-brand:hover img {
    animation: dramaticSpin 1.5s ease-out;
}

@keyframes dramaticSpin {
    0% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        transform: rotateY(180deg) rotateX(10deg) scale(1.3);
    }
    50% {
        transform: rotateY(360deg) rotateX(-10deg) scale(0.9);
    }
    75% {
        transform: rotateY(540deg) rotateX(5deg) scale(1.1);
    }
    100% {
        transform: rotateY(720deg) rotateX(0deg) scale(1);
    }
}