/* ========================================
   A M B ENGLISH MEDIUM PUBLIC SCHOOL
   Faculty Page Specific Styles (faculty.css)
   ======================================== */

/* ===== BREADCRUMB SECTION STYLES ===== */

/* Main Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* Background Pattern Overlay */
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* Animated Background Shapes */
.breadcrumb-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
}

/* Content Container */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* Main Title Styling */
.breadcrumb-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 1.1rem;
}

/* Breadcrumb Items */
.breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    transition: all var(--transition);
}

/* Breadcrumb Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 0.75rem;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

/* Breadcrumb Links */
.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Link Hover Effects */
.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Active Breadcrumb Item */
.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

/* Animations */
@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -10px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 3rem 0 2rem;
        min-height: 150px;
    }
    
    .breadcrumb-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
     .breadcrumb-section {
        padding: 2.5rem 0 1.5rem;
        min-height: 30vh;
    }
    
    .breadcrumb-content h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.3rem;
    }
}

/* Enhanced Hover Effects */
.breadcrumb-item a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.breadcrumb-item a:hover::before {
    width: 100%;
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Focus States for Accessibility */
.breadcrumb-item a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Print Styles */
@media print {
    .breadcrumb-section {
        background: none !important;
        color: black !important;
        padding: 1rem 0;
    }
    
    .breadcrumb-content h1 {
        color: black !important;
        text-shadow: none !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
    
    .breadcrumb-item,
    .breadcrumb-item a {
        color: black !important;
        text-shadow: none !important;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    .breadcrumb-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .breadcrumb-content h1 {
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .breadcrumb-item a {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .breadcrumb-section::after {
        animation: none;
    }
    
    .breadcrumb-content h1 {
        animation: none;
    }
    
    .breadcrumb-item a {
        transition: none;
    }
}

/* Faculty Introduction Section */
.faculty-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.faculty-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Leadership Section */
.leadership-section {
    background: var(--light-color);
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ffffff"/></svg>') center/cover no-repeat;
}

.faculty-leadership-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 43, 92, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.faculty-leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.faculty-leadership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.15);
    border-color: var(--secondary-color);
}

.faculty-leadership-card .faculty-image {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 15px;
}

.faculty-leadership-card .faculty-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.faculty-leadership-card:hover .faculty-image img {
    transform: scale(1.05);
}

.faculty-leadership-card .faculty-info h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faculty-leadership-card .position {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faculty-leadership-card .qualification,
.faculty-leadership-card .experience {
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid #e9ecef;
}

.faculty-leadership-card .description {
    color: #666;
    line-height: 1.7;
    margin: 1.5rem 0;
    font-style: italic;
}

.faculty-leadership-card .faculty-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.faculty-leadership-card .faculty-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

.faculty-leadership-card .faculty-contact i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    width: 16px;
}

/* Teaching Faculty Section */
.teaching-faculty-section {
    background: white;
    position: relative;
}

.teaching-faculty-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23f8f9fa"/></svg>') center/cover no-repeat;
}

/* Faculty Filter */
.faculty-filter {
    margin-bottom: 3rem;
}

.filter-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(26, 43, 92, 0.3);
    transform: translateY(-3px) scale(1.05);
}

.filter-btn.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Faculty Cards */
.faculty-grid {
    position: relative;
}

.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 43, 92, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.faculty-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.15);
    border-color: var(--secondary-color);
}

.faculty-card .faculty-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.faculty-card .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

/* Faculty Overlay */
.faculty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 43, 92, 0.9), rgba(255, 107, 53, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faculty-card:hover .faculty-overlay {
    opacity: 1;
    transform: translateY(0);
}

.faculty-social {
    display: flex;
    gap: 20px;
}

.faculty-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faculty-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.6s ease;
}

.faculty-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2) rotate(360deg);
}

.faculty-social a:hover::before {
    left: 100%;
}

/* Faculty Info */
.faculty-info {
    padding: 2rem 1.5rem;
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-info {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.faculty-info h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.faculty-card:hover .faculty-info h5 {
    color: var(--secondary-color);
}

.faculty-info .subject {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faculty-info .qualification,
.faculty-info .experience {
    background: #e9ecef;
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin: 0.25rem 0;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-info .qualification,
.faculty-card:hover .faculty-info .experience {
    background: #dee2e6;
    transform: translateX(5px);
}

/* Specialties */
.specialties {
    margin-top: 1rem;
}

.specialty-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    border: 1px solid #dee2e6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faculty-card:hover .specialty-tag {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

/* Faculty Statistics Section */
.faculty-stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.faculty-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="stats-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stats-pattern)"/></svg>');
}

.stat-item {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Teaching Methodology Section */
.teaching-methodology-section {
    background: white;
    position: relative;
}

.methodology-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 43, 92, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.methodology-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.12);
    border-color: var(--secondary-color);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.methodology-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.methodology-card:hover .methodology-icon {
    transform: rotateY(360deg) scale(1.1);
}

.methodology-card:hover .methodology-icon::before {
    left: 100%;
}

.methodology-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.6s ease;
}

.methodology-card:hover .methodology-icon i {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.methodology-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.methodology-card:hover .methodology-content h4 {
    color: var(--secondary-color);
}

.methodology-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.methodology-card:hover .methodology-content p {
    color: var(--text-color);
    transform: translateX(5px);
}

/* Professional Development Section */
.professional-development-section {
    background: var(--light-color);
    position: relative;
}

.professional-development-section .section-title{
    color: #000;
}

.development-content {
    padding: 2rem 0;
}

.development-list {
    margin-top: 2rem;
}

.development-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.development-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.development-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.development-item span {
    color: var(--text-color);
    font-weight: 500;
    flex: 1;
}

.development-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(26, 43, 92, 0.1);
    transition: all 0.4s ease;
}

.development-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.15);
}

/* Join Team Section */
.join-team-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.join-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="join-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="45" cy="15" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23join-pattern)"/></svg>');
}

.join-team-content {
    position: relative;
    z-index: 2;
}

.join-team-content .section-badge {
    background: linear-gradient(45deg, var(--secondary-color), #ff8c42);
}

.join-team-content .section-title {
    color: white;
}

.join-team-content .section-title::after {
    background: linear-gradient(90deg, var(--secondary-color), white);
}

.join-team-content .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.join-team-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-team-requirements h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.join-team-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-team-buttons .btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), #ff8c42);
    border: 2px solid var(--secondary-color);
}

.join-team-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #ff8c42, var(--secondary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.join-team-buttons .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.join-team-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.animated {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .breadcrumb-content h1 {
        font-size: 2.5rem;
    }
    
    .faculty-leadership-card {
        margin-bottom: 2rem;
    }
    
    .methodology-icon {
        width: 70px;
        height: 70px;
    }
    
    .methodology-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    .breadcrumb-content h1 {
        font-size: 2.2rem;
    }
    
    .faculty-leadership-card .faculty-image {
        height: 250px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .development-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin: 0.3rem;
    }
       .faculty-leadership-card .faculty-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
}
}

@media (max-width: 767.98px) {
    .breadcrumb-content h1 {
        font-size: 2rem;
    }
    
    .breadcrumb-section {
        padding: 3rem 0 2rem;
    }
    
    .faculty-leadership-card {
        padding: 2rem 1.5rem;
    }
    
    .faculty-leadership-card .faculty-image {
        height: 200px;
    }
    
    .faculty-card .faculty-image {
        height: 220px;
    }
    
    .methodology-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .methodology-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .methodology-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .development-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .join-team-requirements {
        padding: 1.5rem;
    }
    
    .join-team-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.875rem 2rem;
    }
    
    .faculty-social {
        gap: 15px;
    }
    
    .faculty-social a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-content h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .faculty-leadership-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faculty-leadership-card .faculty-image {
        height: 280px;
        margin-bottom: 1.5rem;
    }
    .faculty-leadership-card .faculty-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
}
    
    .faculty-card .faculty-image {
        height: 300px;
    }
    
    .faculty-info {
        padding: 1.5rem 1rem;
    }
    
    .methodology-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .methodology-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .methodology-icon i {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin: 0.2rem;
        display: inline-block;
        width: auto;
    }
    
    .development-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .development-item i {
        margin: 0 0 0.5rem 0;
        font-size: 1.5rem;
    }
    
    .join-team-requirements h4 {
        font-size: 1.25rem;
    }
    
    .requirements-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .faculty-social {
        gap: 10px;
    }
    
    .faculty-social a {
        width: 40px;
        height: 40px;
    }
    
    .specialty-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-section {
        background: none !important;
        color: black !important;
    }
    
    .faculty-card,
    .faculty-leadership-card,
    .methodology-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .faculty-overlay {
        display: none !important;
    }
    
    .filter-btn {
        display: none !important;
    }
    
    .faculty-stats-section,
    .join-team-section {
        background: none !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid #333 !important;
        background: none !important;
        color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .faculty-card,
    .faculty-leadership-card,
    .methodology-card {
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }
    
    .filter-btn {
        border: 2px solid #000 !important;
    }
    
    .faculty-overlay {
        background: rgba(0, 0, 0, 0.9) !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .faculty-card:hover,
    .methodology-card:hover,
    .faculty-leadership-card:hover {
        transform: none !important;
    }
    
    .methodology-icon {
        transform: none !important;
    }
}

.join-team-buttons .btn-outline-primary:hover {
    color: white !important;
    transform: translateY(-2px);
}