/*------------------------------------------------------------------
[Career Guidance Section Styles]
-------------------------------------------------------------------*/

.career-guidance-con {
    background-color: #211e39;
    position: relative;
    overflow: hidden;
}

.career-guidance-con h6{
    font-weight: 600;
    margin-bottom: 14px;
}

.career-guidance-con h2{
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.career-guidance-con:after {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 207px;
    right: 0;
    background: url(../image/circle-bg-img.png) no-repeat top right;
    animation: left-mover 1s infinite alternate;
    -webkit-animation: left-mover 1s infinite alternate;
}
.career-guidance-con::before {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 154px;
    right:72px;
    background: url(../image/half-circle-right-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}

.career-guidance-inner-con {
    position: relative;
}

.career-path-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.career-path-item {
    background: #2A2645;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.career-path-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(111, 52, 254, 0.2);
}

.career-path-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.career-path-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.career-icon {
    width: 70px;
    height: 70px;
    background: var(--light-purple-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.career-path-item:hover .career-icon {
    background: var(--accent);
}

.career-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.career-content h4 {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-content p {
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

.career-content a {
    color: var(--accent);
    font-size: 18px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.career-content a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.career-content a:hover {
    color: var(--light-purple-color);
}

.career-content a:hover:after {
    background: var(--light-purple-color);
}

.guidance-btn {
    text-align: center;
    margin-top: 20px;
}

.guidance-btn a {
    display: inline-block;
    background: var(--accent);
    color: var(--white-color);
    font-size: 20px;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guidance-btn a:hover {
    background: var(--light-purple-color);
    transform: translateY(-5px);
}

/* Animation for career path items */
.career-path-item.animated {
    animation: fadeInUp 0.5s ease forwards;
}

@media (max-width: 991px) {
    .career-path-item {
        padding: 25px;
    }
    
    .career-icon {
        width: 60px;
        height: 60px;
    }
    
    .career-icon i {
        font-size: 25px;
    }
    
    .career-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .career-path-box {
        margin-top: 30px;
    }
    
    .guidance-btn a {
        font-size: 18px;
        padding: 12px 30px;
    }
}