        /* ========================================
           Hero Image Enhancement
           ======================================== */
        .hero-image-wrapper {
            position: relative;
            padding: 20px;
        }
        
        .hero-image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 51, 102, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-main-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .hero-image-frame:hover .hero-main-image {
            transform: scale(1.05);
        }
        
        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.2) 0%, rgba(0, 64, 128, 0.4) 100%);
            pointer-events: none;
        }
        
        .hero-image-accent {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.4);
            animation: float 3s ease-in-out infinite;
        }
        
        .hero-accent-1 {
            top: -20px;
            right: -20px;
            animation-delay: 0s;
        }
        
        .hero-accent-2 {
            bottom: 40px;
            right: -30px;
            animation-delay: 1s;
        }
        
        .hero-accent-3 {
            bottom: -20px;
            left: 20px;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        
        /* ========================================
           Enhanced Faculty Cards
           ======================================== */
        .faculty-card-enhanced {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .faculty-card-enhanced:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 51, 102, 0.2);
            border-color: var(--primary-blue);
        }
        
        .faculty-card-header {
            padding: 30px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .faculty-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            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='%23ffffff' fill-opacity='0.4'%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");
        }
        
        .faculty-number {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 3.5rem;
            font-weight: 900;
            opacity: 0.15;
            color: white;
            line-height: 1;
        }
        
        .faculty-card-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
            display: block;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .faculty-title {
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Faculty Header Colors */
        .faculty-header-danger {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        }
        
        .faculty-header-info {
            background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
        }
        
        .faculty-header-primary {
            background: linear-gradient(135deg, #003366 0%, #004080 100%);
        }
        
        .faculty-header-success {
            background: linear-gradient(135deg, #28a745 0%, #218838 100%);
        }
        
        .faculty-header-warning {
            background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
        }
        
        .faculty-header-warning .faculty-title {
            color: #003366;
        }
        
        .faculty-header-secondary {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
        }
        
        .faculty-header-dark {
            background: linear-gradient(135deg, #343a40 0%, #23272b 100%);
        }
        
        .faculty-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .faculty-program-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }
        
        .faculty-program-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 0.9rem;
            color: #555;
            border-bottom: 1px dashed #eee;
        }
        
        .faculty-program-list li:last-child {
            border-bottom: none;
        }
        
        .faculty-program-list li::before {
            content: '\F26B';
            font-family: 'Bootstrap Icons';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 0.8rem;
        }
        
        /* Faculty CTA Box */
        .faculty-cta-box {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 51, 102, 0.1);
            border: 2px solid rgba(0, 51, 102, 0.1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-image-wrapper {
                margin-top: 40px;
            }
            
            .hero-image-accent {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .faculty-card-enhanced {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 575px) {
            .hero-accent-1,
            .hero-accent-2,
            .hero-accent-3 {
                display: none;
            }
            
            .faculty-cta-box {
                padding: 25px;
            }
            
            .faculty-cta-box .btn-lg {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        
        /* Animation for Faculty Cards */
        .faculty-card-enhanced {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        .faculty-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
        .faculty-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
        .faculty-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
        .faculty-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
        .faculty-card-enhanced:nth-child(5) { animation-delay: 0.5s; }
        .faculty-card-enhanced:nth-child(6) { animation-delay: 0.6s; }
        .faculty-card-enhanced:nth-child(7) { animation-delay: 0.7s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
