/* Advisor Cards Styling - Matching the live site */

/* Tabs styling */
.advisor-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 25px;
}

.advisor-tabs .nav-item {
    margin-bottom: -1px;
}

.advisor-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 10px 20px;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.advisor-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    color: #333;
}

.advisor-tabs .nav-link.active {
    color: #800000;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.advisor-tabs .nav-link i {
    margin-right: 5px;
}
.advisor-card {
    background-color: #fff;
    border-radius: 0;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.advisor-img {
    position: relative;
    width: 100px;
    float: left;
    margin-right: 20px;
}

.advisor-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.online-indicator {
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    left: 5px;
    border: 2px solid white;
    z-index: 2;
}

.advisor-info {
    overflow: hidden;
}

.advisor-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.advisor-description {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ratings {
    color: #FFD700;
    margin-bottom: 5px;
}

.review-count {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.session-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.price-info {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: right;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.current-price {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.action-buttons {
    text-align: right;
    margin-top: 10px;
}

.btn-chat-now, .btn-call-now, .btn-chat-later {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 10px;
    text-decoration: none;
    color: white;
}

.btn-chat-now {
    background-color: #6c5ce7;
}

.btn-call-now {
    background-color: #00b894;
}

.btn-chat-later {
    background-color: #ff7675;
}

.btn-chat-now:hover, .btn-call-now:hover, .btn-chat-later:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}
