/* Vision & Mission Page Styles */
.vm-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.vm-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.vm-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.vm-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.vm-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    margin-bottom: 1.75rem;
}

.vm-icon-wrapper.vision {
    background: #eff6ff;
    color: #2563eb;
}

.vm-icon-wrapper.mission {
    background: #f0fdf4;
    color: #16a34a;
}

.vm-icon-wrapper i {
    font-size: 2.5rem;
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.vm-title.vision {
    color: #1d4ed8;
}

.vm-title.mission {
    color: #15803d;
}

.vm-text {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-top: auto;
    width: 100%;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.mission-list li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

/* Commitment Section */
.commitment-section {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 5rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    transform: rotate(-30deg);
    pointer-events: none;
}

.commitment-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.commitment-item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    backdrop-filter: none;
    border-radius: 1.25rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.commitment-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.commitment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    background: #eff6ff;
    color: #3b82f6;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.commitment-item h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.commitment-item p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
}
