/* Vision Mission Section - Modern & Professional */
.vision-mission-section {
    padding: 100px 0;
    background: #f8fafb;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314356d' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.vision-mission-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vm-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.vm-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

.vm-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #14356d;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(20, 53, 109, 0.1);
}

.highlight-orange {
    color: #ff6b35;
    position: relative;
}

.highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.vm-list {
    max-width: 900px;
    margin: 0 auto;
}

.vm-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 25px;
    counter-reset: list-counter;
}

.vm-list li {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.vm-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff6b35;
    transition: width 0.4s ease;
}

.vm-list li::after {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    top: 25px;
    right: 25px;
    background: #ff6b35;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.vm-list li:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.vm-list li:hover::before {
    width: 8px;
}

.vm-list li:nth-child(even) {
    background: rgba(248, 250, 252, 0.95);
}

.vm-list li:nth-child(even)::after {
    background: #14356d;
    box-shadow: 0 4px 12px rgba(20, 53, 109, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 80px 0;
    }
    
    .vm-header {
        margin-bottom: 50px;
    }
    
    .vm-header h2 {
        font-size: 2.2rem;
    }
    
    .vm-list {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .vm-list li {
        padding: 25px 30px;
        font-size: 1rem;
        border-radius: 15px;
    }
    
    .vm-list li::after {
        width: 30px;
        height: 30px;
        top: 20px;
        right: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .vm-header h2 {
        font-size: 1.8rem;
    }
    
    .vm-list {
        margin: 0 15px;
    }
    
    .vm-list li {
        padding: 20px 25px;
        font-size: 0.95rem;
        border-radius: 12px;
        gap: 20px;
    }
    
    .vm-list li::after {
        width: 28px;
        height: 28px;
        top: 18px;
        right: 18px;
        font-size: 0.75rem;
    }
}
