        /* Faculty Page Specific Styles --faculty.css*/
        .faculty-page {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Animated Background Elements */
        .faculty-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        
        .faculty-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 110, 115, 0.03), rgba(255, 222, 89, 0.03));
            animation: float 20s infinite ease-in-out;
        }
        
        .faculty-bg-circle-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .faculty-bg-circle-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
            animation-delay: 5s;
        }
        
        .faculty-bg-circle-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(5deg); }
            50% { transform: translate(-20px, 20px) rotate(-5deg); }
            75% { transform: translate(20px, 20px) rotate(3deg); }
        }
        
        /* ===== ORIGINAL HEADER STYLES - KEPT EXACTLY AS REQUESTED ===== */
        .faculty-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .faculty-header .section-subtitle {
            display: inline-block;
            background: rgba(26, 110, 115, 0.1);
            color: #fff;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }
        
        .faculty-header h1 {
            font-size: 3.5rem;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .faculty-header h1 span {
            color: #ffde59;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            display: inline-block;
        }
        
        .faculty-header h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 222, 89, 0.3);
            z-index: -1;
            border-radius: 10px;
        }
        
        .faculty-header p {
            color: #fff;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Faculty Grid */
        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        /* Premium Faculty Card - Clean Version */
        .faculty-premium-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(26, 110, 115, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .faculty-premium-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(26, 110, 115, 0.2);
        }
        
        /* Card Media - Image Container */
        .faculty-card-media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1/1.1;
        }
        
        .faculty-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .faculty-premium-card:hover .faculty-card-media img {
            transform: scale(1.1);
        }
        
        /* Subtle Image Overlay */
        .faculty-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 110, 115, 0.2) 90%, rgba(26, 110, 115, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .faculty-premium-card:hover .faculty-image-overlay {
            opacity: 1;
        }
        
        /* Experience Badge - Moved below designation */
        .faculty-experience {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #1a6e73;
            color: white;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0 20px 15px;
            box-shadow: 0 5px 15px rgba(26, 110, 115, 0.2);
        }
        
        .faculty-experience i {
            color: #ffde59;
        }
        
        /* Card Content */
        .faculty-card-content {
            padding: 25px 25px 30px;
            text-align: center;
            background: white;
        }
        
        .faculty-name {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 5px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .faculty-premium-card:hover .faculty-name {
            color: #1a6e73;
        }
        
        .faculty-designation {
            color: #1a6e73;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 12px;
            display: inline-block;
            padding: 5px 20px;
            background: rgba(26, 110, 115, 0.1);
            border-radius: 50px;
        }
        
        .faculty-qualification {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-top: 1px solid rgba(26, 110, 115, 0.1);
            padding-top: 20px;
            margin-top: 10px;
        }
        
        .faculty-qualification i {
            color: #ffde59;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .faculty-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .faculty-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .faculty-page {
                padding: 40px 20px 60px;
            }
            
            .faculty-header h1 {
                font-size: 2.5rem;
            }
            
            .faculty-header p {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .faculty-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 640px) {
            .faculty-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .faculty-header h1 {
                font-size: 2rem;
            }
        }