/* MBBS Abroad Section Styles */
.mbbs-abroad-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.mbbs-abroad-title {
    text-align: center;
    margin-bottom: 50px;
}

.mbbs-abroad-title h2 {
    color: #0a3b5c;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0;
}

.mbbs-abroad-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #0073e6;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.process-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.process-number {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.process-card:nth-child(1) .process-number {
    background: linear-gradient(135deg, #f96, #ff5e62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.process-card:nth-child(2) .process-number {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.process-card:nth-child(3) .process-number {
    background: linear-gradient(135deg, #ffb347, #fc3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.process-title {
    color: #0a3b5c;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    color: #0073e6;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: color .3s ease;
    position: relative;
    z-index: 1;
}

.learn-more-link:hover {
    color: #0a3b5c;
}

.learn-more-link svg {
    margin-left: 5px;
    transition: transform .3s ease;
}

.learn-more-link:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .mbbs-abroad-title h2 {
        font-size: 30px;
    }
    
    .process-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .process-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mbbs-abroad-title h2 {
        font-size: 26px;
    }
    
    .process-number {
        font-size: 60px;
    }
    
    .process-title {
        font-size: 20px;
    }
}
