 :root {
            --primary-color: #001f3f; /* Navy Blue */
            --secondary-color: #0074D9; /* Bright Blue */
            --accent-color: #FF4136; /* Red */
            --light-bg: #f0f8ff; /* AliceBlue background */
            --text-color: #333;
            --content-font-size: 1.1rem;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 20px;
            font-size: var(--content-font-size);
            background-image: url('https://img.freepik.com/free-vector/hand-drawn-education-background_23-2149464866.jpg'), 
                            url('https://img.freepik.com/free-vector/gradient-network-connection-background_23-2148881320.jpg');
            background-repeat: no-repeat;
            background-position: left top, right bottom;
            background-size: 300px, 250px;
            background-attachment: fixed;
            background-color: var(--light-bg);
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(240, 248, 255, 0.85);
            z-index: -1;
        }
        
        .faculty-container {
            max-width: 1000px;
            margin: 30px auto;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 25px rgba(0,0,0,0.15);
            border-radius: 10px;
            overflow: hidden;
            backdrop-filter: blur(2px);
        }
        
        .faculty-header {
            background: var(--primary-color);
            color: white;
            padding: 35px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .faculty-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255,255,255,0.3);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
        
        .faculty-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        
        .faculty-header h1 {
            margin: 0;
            font-size: 2.3em; /* Slightly reduced from 2.5em */
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.5px;
        }
        
        .faculty-header h1 i {
            color: var(--accent-color);
            font-size: 0.9em;
        }
        
        .faculty-header h2 {
            margin: 8px 0 0;
            font-size: 1.4em; /* Slightly reduced from 1.5em */
            font-weight: 400;
            color: rgba(255,255,255,0.9);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faculty-header h2 i {
            font-size: 0.9em;
        }
        
        .faculty-header .department {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-color);
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 1em; /* Reduced from 1.1em */
            margin-top: 12px;
            font-weight: 500;
        }
        
        .faculty-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            padding: 30px; /* Reduced from 35px */
            font-size: 1.05em;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            body {
                background-size: 200px, 150px;
                padding: 15px;
                font-size: 1.05rem;
            }
            
            .faculty-content {
                grid-template-columns: 1fr;
                padding: 25px;
                font-size: 1em;
            }
            
            .faculty-header {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding: 30px;
            }
            
            .faculty-header h1 {
                font-size: 2em;
            }
            
            .faculty-header h2 {
                font-size: 1.2em;
            }
            
            .faculty-image {
                width: 140px;
                height: 140px;
            }
        }
        
        .detail-group {
            margin-bottom: 25px;
        }
        
        .detail-group h3 {
            color: var(--primary-color);
            margin-bottom: 12px;
            font-size: 1.25em; /* Reduced from 1.3em */
            border-bottom: 2px solid #eee;
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 12px;
        }
        
        .detail-label {
            font-weight: 600;
            min-width: 220px; /* Reduced from 240px */
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1em; /* Reduced from 1.05em */
        }
        
        .detail-value {
            flex: 1;
            font-size: 1em; /* Reduced from 1.05em */
        }
        
        .contribution-list {
            list-style-type: none;
            padding-left: 5px;
            margin-top: 8px;
        }
        
        .contribution-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 1em; /* Reduced from 1.05em */
            line-height: 1.5;
        }
        
        .contribution-list li:before {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-color);
            font-size: 0.8em;
            margin-top: 6px;
        }
        
        .publications {
            grid-column: 1 / -1;
            background: rgba(240, 248, 255, 0.7);
            padding: 20px; /* Reduced from 25px */
            border-radius: 8px;
            margin-top: 15px;
        }
        
        .section-title {
            color: var(--primary-color);
            text-align: center;
            margin: 30px 0 20px; /* Reduced from 35px 0 25px */
            font-size: 1.6em; /* Reduced from 1.7em */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-weight: 600;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 100px;
            height: 3px;
            background: var(--secondary-color);
            margin: 10px auto; /* Reduced from 12px */
        }
        
        .detail-group h3 i, 
        .section-title i,
        .detail-label i {
            color: var(--secondary-color);
        }