.vm-container {
    width: 100%;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

/* Tabs Navigation */
.vm-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 1.25rem;
}

.vm-tab-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    background-color: #ffffff;
}

.vm-tab-btn:hover {
    color: #0F172A;
    background-color: #f1f5f9;
    border-color: rgba(0,0,0,0.15);
}

.vm-tab-btn.active {
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.vm-tab-btn .red-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vm-tab-btn.active .red-dot {
    opacity: 1;
    transform: scale(1);
    background-color: #ffffff;
}

/* Tab Panes */
.vm-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vm-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Vision & Mission Grid */
.vm-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .vm-grid-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.vm-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border-top: 4px solid #0F172A;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.vm-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.vm-card-icon-wrapper {
    flex-shrink: 0;
    margin-bottom: 0 !important;
}

.vm-card-heading-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vm-heading-line {
    display: inline-block;
    width: 25px;
    height: 4px;
    border-radius: 2px;
}

.vm-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
}

.vm-desc {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}

/* Values Grid */
.vm-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .vm-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vm-values-grid {
        grid-template-columns: 1fr;
    }
}

.vm-value-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vm-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.07);
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.5rem;
    background-color: #f8fafc;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.vm-value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.value-badge-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.value-card-title {
    margin: 0 0 0.8rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.value-card-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748B;
}

/* Animations */
.animated-card {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: var(--animation-delay, 0s);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
