/* 
* ABU Business School - Application Page Styles
*/

/* Process Steps */
.process-steps {
    margin-bottom: 3rem;
}

.step-icon {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 123, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 10px rgba(10, 21, 81, 0.1);
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

@media (max-width: 767px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* Application Form */
.application-form h5 {
    color: var(--primary);
    font-weight: 600;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--light-gray);
}

.tips-list li:last-child {
    border-bottom: none;
}

.widget-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.date-icon, .contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(10, 21, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Message */
.success-icon {
    animation: success-pulse 2s ease-in-out;
}

@keyframes success-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Program Banner */
.program-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.program-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.program-banner-content {
    position: relative;
    z-index: 2;
}

.program-type-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Career List */
.career-list {
    list-style: none;
    padding-left: 0;
}

.career-list li {
    padding: 0.5rem 0;
}

/* Highlights List */
.highlights-list {
    list-style: none;
    padding-left: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.highlights-list li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* Related Programs */
.related-program {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.related-program:hover {
    color: var(--primary);
    background-color: var(--light-gray);
}

/* Custom Info Item Borders */
@media (max-width: 767px) {
    .border-md-end {
        border-right: none !important;
    }
}

/* Faculty Card Styling */
.faculty-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faculty-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.placeholder-image {
    width: 150px;
    height: 150px;
}

.faculty-card .social-links {
    display: flex;
}

.faculty-card .social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faculty-card .social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Research Area Cards */
.research-area-card {
    position: relative;
    padding-top: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.research-stats {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}