/*
 * SpineExpert Faculties Page Specific Styles
 */

/* Faculties section background enhancement */
.faculties-full-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faculties-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23184f76' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

/* Tab Transition Animations - Fixed */
.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none !important;
}

.tab-pane.active.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}

.tab-content {
    min-height: 300px; /* Ensure there's space for content to appear */
    position: relative;
    margin-top: 30px;
}

/* Enhanced tab design */
.nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.nav-pills .nav-link {
    color: #333;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.nav-pills .nav-link.active {
    background-color: #e94e1b;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 78, 27, 0.3);
    transform: translateY(-3px);
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #fff;
    transform: translateY(-2px);
    border-color: #e94e1b;
    color: #e94e1b;
}

/* Faculty title styles */
.faculty-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.faculty-title span {
    color: #e94e1b;
}

/* Faculty card styles - same as committee to maintain consistency */
.faculty-card {
    margin-bottom: 30px;
}

.faculty-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faculty-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 78, 27, 0);
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faculty-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-img {
    transform: translateY(-5px);
}

.faculty-card:hover .faculty-img::before {
    background: rgba(233, 78, 27, 0.2);
}

.faculty-card:hover h4 {
    color: #e94e1b;
}

/* Faculty container */
.faculty-container {
    position: relative;
    padding: 40px 25px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.faculty-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 L15 0 L30 15 L15 30 Z' fill='%23e94e1b' fill-opacity='0.03'/%3E%3C/svg%3E");
    border-radius: 20px;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .faculty-img {
        width: 150px;
        height: 150px;
    }
    
    .faculty-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .faculty-img {
        width: 120px;
        height: 120px;
    }
    
    .faculty-card h4 {
        font-size: 16px;
    }
    
    .faculty-title {
        font-size: 1.6rem;
    }
    
    .faculty-container {
        padding: 30px 15px;
    }
}

@media (max-width: 575px) {
    .faculty-img {
        width: 100px;
        height: 100px;
    }
    
    .faculty-card h4 {
        font-size: 14px;
    }
    
    .faculty-title {
        font-size: 1.4rem;
    }
    
    .faculty-card {
        margin-bottom: 20px;
    }
} 