/* ========== MODERN MISSION & VISION STYLES ========== */

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(53, 53, 53, 0.05);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.mission-card-hover:hover {
    border-color: var(--primary);
}

.vision-card-hover:hover {
    border-color: var(--secondary);
}

.mv-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: rotate(15deg) scale(1.1);
}

.mv-icon i {
    font-size: 1.8rem;
    color: white;
}

.mv-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(53, 53, 53, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-number {
    color: rgba(53, 53, 53, 0.08);
    transform: scale(1.1);
}

.mv-title {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mv-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.mv-description {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.mv-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.05;
}

.mv-decoration span {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    margin-bottom: 10px;
}

.mv-decoration span:nth-child(2) {
    width: 40px;
    height: 40px;
    margin-left: 20px;
    background: var(--secondary);
}

.mv-decoration span:nth-child(3) {
    width: 20px;
    height: 20px;
    margin-left: 40px;
    background: var(--primary);
}

/* ========== MODERN PROCESS STYLES ========== */

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(53, 53, 53, 0.05);
}

.process-step-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.process-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(53, 53, 53, 0.1);
    transition: all 0.3s ease;
}

.process-step-modern:hover .process-number {
    color: rgba(53, 53, 53, 0.15);
    transform: scale(1.1);
}

.process-icon-wrapper {
    margin: 20px 0 30px;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-modern:hover .process-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.process-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.process-step-modern:hover .process-icon::before {
    transform: scale(1.1);
}

.process-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.process-step-modern:hover .process-icon i {
    transform: rotateY(-180deg);
}

.process-title {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.process-description {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
    color: var(--primary);
}

@media (max-width: 992px) {
    .process-arrow {
        display: none;
    }
}

.process-checkmark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.process-step-modern:hover .process-checkmark {
    opacity: 1;
    transform: scale(1);
}

.process-checkmark i {
    color: white;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mv-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .mv-icon {
        width: 50px;
        height: 50px;
    }
    
    .mv-icon i {
        font-size: 1.5rem;
    }
    
    .mv-number {
        font-size: 2.5rem;
    }
    
    .process-step-modern {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon i {
        font-size: 1.8rem;
    }
}

/* Animation Delays for Process Steps */
.process-step-modern:nth-child(1) { animation-delay: 0.1s; }
.process-step-modern:nth-child(2) { animation-delay: 0.2s; }
.process-step-modern:nth-child(3) { animation-delay: 0.3s; }
.process-step-modern:nth-child(4) { animation-delay: 0.4s; }