
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            overflow-x: hidden;
            padding: 0;
        }
        .full-screen {
            width: 100%;
            height: 200vh;
            background-image: url('pozadina.jpg');
            background-size: cover;
            background-position: left;
            background-attachment: fixed;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 50px;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .full-screen {
            width: 100%;
            height: 200vh;
            background-image: url('pozadina.jpg');
            background-size: cover;
            background-position: left;
            background-attachment: fixed;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 50px;
        }

        .welcome-text {
            color: white;
            font-size: 42px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
            opacity: 0;
            animation: fadeIn 2s forwards;
        }

        .faculty-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px;
            max-width: 1200px;
            margin-top: 60px;
            background-color: rgba(255, 255, 255, 0.85);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
			            animation: fadeIn 2s forwards;
            animation-delay: 0.5s;
        }

        .section-title {
            color: #333;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 1px;
            
        }

        .card-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 30px;
            margin-top: 40px;
        }

        .faculty-card {
            background-color: #fff;
            width: 320px;
            padding: 25px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			
;
        }

        .faculty-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0077b6;
            opacity: 0.1;
            transition: all 0.3s ease;
			
			
        }

        .faculty-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .faculty-card:hover::before {
            opacity: 0.3;
        }

        .faculty-card h3 {
            font-size: 22px;
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .faculty-card p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }

        .faculty-card a {
            color: #0077b6;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .faculty-card a:hover {
            color: #004c80;
        }

        .separator {
            width: 80%;
            height: 1px;
            background-color: #0077b6;
            margin: 60px auto;
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .faculty-card {
                width: 90%;
            }
        }
		        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

    </style>
  
